Skip to content

Commit

Permalink
fix(acm): correct membership location (#2128)
Browse files Browse the repository at this point in the history
  • Loading branch information
apeabody authored Oct 4, 2024
1 parent eed7513 commit 7cf9894
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions modules/acm/feature.tf
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,12 @@ resource "google_gke_hub_feature_membership" "main" {
google_gke_hub_feature.acm
]

location = module.registration.location
location = "global"
feature = "configmanagement"

membership = module.registration.cluster_membership_id
project = coalesce(var.fleet_project_id, var.project_id)
membership_location = module.registration.location
membership = module.registration.cluster_membership_id
project = coalesce(var.fleet_project_id, var.project_id)

configmanagement {
version = var.configmanagement_version
Expand Down

0 comments on commit 7cf9894

Please sign in to comment.