Skip to content

Commit 7cf9894

Browse files
authored
fix(acm): correct membership location (#2128)
1 parent eed7513 commit 7cf9894

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

Diff for: modules/acm/feature.tf

+4-3
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,12 @@ resource "google_gke_hub_feature_membership" "main" {
2929
google_gke_hub_feature.acm
3030
]
3131

32-
location = module.registration.location
32+
location = "global"
3333
feature = "configmanagement"
3434

35-
membership = module.registration.cluster_membership_id
36-
project = coalesce(var.fleet_project_id, var.project_id)
35+
membership_location = module.registration.location
36+
membership = module.registration.cluster_membership_id
37+
project = coalesce(var.fleet_project_id, var.project_id)
3738

3839
configmanagement {
3940
version = var.configmanagement_version

0 commit comments

Comments
 (0)