Skip to content

Commit

Permalink
fix(TPG>=5.41)!: add config_sync.enabled (#2074)
Browse files Browse the repository at this point in the history
  • Loading branch information
apeabody authored Sep 10, 2024
1 parent f54d2e1 commit 4939c6f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions modules/acm/feature.tf
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ resource "google_gke_hub_feature_membership" "main" {
for_each = var.enable_config_sync ? [{ enabled = true }] : []

content {
enabled = var.enable_config_sync
source_format = var.source_format != "" ? var.source_format : null

git {
Expand Down
4 changes: 2 additions & 2 deletions modules/acm/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@ terraform {
required_providers {
google = {
source = "hashicorp/google"
version = ">= 4.32.0, < 6"
version = ">= 5.41.0, < 6"
}
google-beta = {
source = "hashicorp/google-beta"
version = ">= 4.32.0, < 6"
version = ">= 5.41.0, < 6"
}
kubernetes = {
source = "hashicorp/kubernetes"
Expand Down

0 comments on commit 4939c6f

Please sign in to comment.