Skip to content

Commit

Permalink
Set service account data instead of passing null since it will fail d…
Browse files Browse the repository at this point in the history
…ue to dynamic block in the instance template module
  • Loading branch information
thiagonache committed Jan 4, 2022
1 parent 5ad2eb9 commit 80f9276
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/compute_instance/disk_snapshot/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ module "instance_template" {
project_id = var.project_id
subnetwork = var.subnetwork
name_prefix = "instance-disk-snapshot"
service_account = null
service_account = { email = "", scopes = ["cloud-platform"] }

additional_disks = [
{
Expand Down
2 changes: 1 addition & 1 deletion examples/mig/healthcheck/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ module "instance_template" {
source = "../../../modules/instance_template"
project_id = var.project_id
subnetwork = google_compute_subnetwork.main.name
service_account = null
service_account = { email = "", scopes = ["cloud-platform"] }
}

/** Instance Group within autoscale and health check **/
Expand Down

0 comments on commit 80f9276

Please sign in to comment.