Open ericitaquera opened 1 month ago
Confirmed issue!
After replicating the steps and using the following configuration as a basic example the value of gcfs_config.enabled
in the tfstate
file was false
instead of true
resource "google_container_cluster" "container_cluster_20123" {
name = "container-cluster-20123"
location = "us-central1"
initial_node_count = 1
deletion_protection = false
node_config {
gcfs_config {
enabled = true
}
}
node_pool_auto_config {
network_tags {
tags = []
}
}
}
Community Note
Hello.
Even if explicitly "gcfs_config=enabled" in tf configuration, resulting GKE Cluster resource on GCP is created with "Image Streaming = Disabled".
Terraform Version & Provider Version(s)
Terraform v1.9.0 on linux_amd64
Affected Resource(s)
"google_container_cluster"
Terraform Configuration
Debug Output
No response
Expected Behavior
GKE cluster with Image Streaming enabled
Actual Behavior
Gke cluster with Image Streaming disabled
Steps to reproduce
Important Factoids
No response
References
No response
b/378481057