You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Please vote on this issue by adding a 👍 reaction to the original issue to help the community and maintainers prioritize this request.
Please do not leave +1 or me too comments, they generate extra noise for issue followers and do not help prioritize the request.
If you are interested in working on this issue or have submitted a pull request, please leave a comment.
If an issue is assigned to a user, that user is claiming responsibility for the issue.
Customers working with a Google Technical Account Manager or Customer Engineer can ask them to reach out internally to expedite investigation and resolution of this issue.
resource"google_network_security_gateway_security_policy_rule""rules" {
count=6//Need to be more than 2 to throw the errorname="tf-test-gateway-sp-rule${count.index}-%{random_suffix}"location="us-central1"gateway_security_policy=google_network_security_gateway_security_policy.default.nameenabled=truedescription="${count.index} rule"priority=count.index+1// Avoid 0 prioritysession_matcher="host() == 'update.com'"application_matcher="request.method == 'GET'"tls_inspection_enabled=falsebasic_profile="DENY"
}
Debug Output
No response
Expected Behavior
The Gateway Security Policy Rules API should be able to create all resources in parallel at once.
The pull request GoogleCloudPlatform/magic-modules#12704 is a workaround for this error.
But we should try to fix and then remove this workaround from the Terraform code.
b/389698237
The text was updated successfully, but these errors were encountered:
Community Note
Terraform Version & Provider Version(s)
Terraform v1.9.5
on darwin_amd64
Affected Resource(s)
google_network_security_gateway_security_policy_rule
Terraform Configuration
Debug Output
No response
Expected Behavior
The
Gateway Security Policy Rules
API should be able to create all resources in parallel at once.Actual Behavior
The API is throwing an error:
Note: We have the same behavior on the GCP Console interface when trying to create more than 2 rules.
Steps to reproduce
terraform apply
Important Factoids
No response
References
The module terraform-google-secure-web-proxy creates multiple rules and because of this error the module is failing.
The pull request GoogleCloudPlatform/magic-modules#12704 is a workaround for this error.
But we should try to fix and then remove this workaround from the Terraform code.
b/389698237
The text was updated successfully, but these errors were encountered: