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
Labels set on instance template are not set on the instance.
Plan
# module.my.google_compute_instance_template.default will be created + resource "google_compute_instance_template" "default" { ... + effective_labels = { + "goog-terraform-provisioned" = "true" + "node-type" = "my-node" }, + labels = { + "node-type" = "my-node" } + terraform_labels = { + "goog-terraform-provisioned" = "true" + "node-type" = "my-node" } # module.my.google_compute_instance_from_template.default will be created + resource "google_compute_instance_from_template" "default" { ... + effective_labels = { + "goog-terraform-provisioned" = "true" }, + terraform_labels = { + "goog-terraform-provisioned" = "true" } }
Terraform v1.10.5 on amd64
google_compute_instance_from_template
No response
Labels from template are applied on the instance.
Labels from template are not applied on the instance.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Community Note
Labels set on instance template are not set on the instance.
Plan
Terraform Version & Provider Version(s)
Terraform v1.10.5
on amd64
Affected Resource(s)
google_compute_instance_from_template
Terraform Configuration
Debug Output
No response
Expected Behavior
Labels from template are applied on the instance.
Actual Behavior
Labels from template are not applied on the instance.
Steps to reproduce
No response
Important Factoids
No response
References
No response
The text was updated successfully, but these errors were encountered: