mirror of
https://github.com/ghndrx/GSP662.git
synced 2026-02-10 23:14:57 +00:00
set to use default service-account
This commit is contained in:
@@ -14,7 +14,11 @@ resource "google_compute_instance" "backend" {
|
||||
image = "debian-cloud/debian-10"
|
||||
}
|
||||
}
|
||||
|
||||
service_account {
|
||||
// Use the default service account
|
||||
email = "default"
|
||||
scopes = ["cloud-platform"]
|
||||
}
|
||||
network_interface {
|
||||
network = "default"
|
||||
access_config {
|
||||
@@ -39,7 +43,11 @@ resource "google_compute_instance" "frontend" {
|
||||
image = "debian-cloud/debian-10"
|
||||
}
|
||||
}
|
||||
|
||||
service_account {
|
||||
// Use the default service account
|
||||
email = "default"
|
||||
scopes = ["cloud-platform"]
|
||||
}
|
||||
network_interface {
|
||||
network = "default"
|
||||
access_config {
|
||||
|
||||
Reference in New Issue
Block a user