bugfix: Fix Apigee organization properties assignments (#3817)

This commit is contained in:
Samuele Perticarari
2026-03-28 08:23:01 +01:00
committed by GitHub
parent 44d00ed670
commit ce1d0a6d2a

View File

@@ -38,8 +38,8 @@ resource "google_apigee_organization" "organization" {
dynamic "property" {
for_each = var.organization.properties
content {
name = properties.key
value = properties.value
name = property.key
value = property.value
}
}
}