We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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 our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The submodule that handles the creation of private autopilot clusters should also allow setting network tags.
https://registry.terraform.io/providers/hashicorp/google/latest/docs/resources/container_cluster#network_tags
resource "google_container_cluster" "primary" { provider = google-beta name = var.name # ... dynamic "node_pool_auto_config" { for_each = length(var.network_tags) > 0 ? [1] : [] content { network_tags { tags = var.network_tags } } } } variable "network_tags" { description = "(Optional, Beta) - List of network tags applied to auto-provisioned node pools." type = list(string) default = [] }
No response
The text was updated successfully, but these errors were encountered:
Yes please, I thought I was going crazy, I guess I'm not alone.
Sorry, something went wrong.
please make this available
This issue is stale because it has been open 60 days with no activity. Remove stale label or comment or this will be closed in 7 days
Not stale.
Resolved in #1572
gtsorbo
No branches or pull requests
TL;DR
The submodule that handles the creation of private autopilot clusters should also allow setting network tags.
Terraform Resources
https://registry.terraform.io/providers/hashicorp/google/latest/docs/resources/container_cluster#network_tags
Detailed design
Additional information
No response
The text was updated successfully, but these errors were encountered: