- Notifications
You must be signed in to change notification settings - Fork472
feat: Remove condition from data.google_compute_zones.available#684
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Uh oh!
There was an error while loading.Please reload this page.
Conversation
Condition causes an issue when `var.zone` is computed in the host Terraform code.``` │ Error: Invalid count argument │ │ on .terraform/modules/pg/modules/postgresql/read_replica.tf line 26, in data "google_compute_zones" "available": │ 26: count = var.zone == null ? 1 : 0 │ │ The "count" value depends on resource attributes that cannot be determined │ until apply, so Terraform cannot predict how many instances will be │ created. To work around this, use the -target argument to first apply only │ the resources that the count depends on.```
Thanks for your pull request! It looks like this may be your first contribution to a Google open source project. Before we can look at your pull request, you'll need to sign a Contributor License Agreement (CLA). View thisfailed invocation of the CLA check for more information. For the most up to date status, view the checks section at the bottom of the pull request. |
gcbrun |
/gcbrun |
/gcbrun |
/gcbrun |
/gcbrun |
af7f20c intoterraform-google-modules:mainUh oh!
There was an error while loading.Please reload this page.
Condition causes an issue when
var.zoneis computed in the host Terraform code.