Skip to content
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 our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Node_config image_type case diff suppress #7412

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .changelog/4029.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:bug
container: fixed `node_config.image_type` perma-diff when specified in lower case.
```
7 changes: 4 additions & 3 deletions google/node_config.go
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,10 @@ func schemaNodeConfig() *schema.Schema {
},

"image_type": {
Type: schema.TypeString,
Optional: true,
Computed: true,
Type: schema.TypeString,
Optional: true,
Computed: true,
DiffSuppressFunc: caseDiffSuppress,
},

"labels": {
Expand Down
2 changes: 1 addition & 1 deletion google/resource_container_cluster_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2247,7 +2247,7 @@ resource "google_container_cluster" "with_node_config" {
}

// Updatable fields
image_type = "COS"
image_type = "cos"
}
}
`, clusterName)
Expand Down