From ce1d0a6d2a2fa8d44c69aa48f89be6c66b80324a Mon Sep 17 00:00:00 2001 From: Samuele Perticarari Date: Sat, 28 Mar 2026 08:23:01 +0100 Subject: [PATCH] bugfix: Fix Apigee organization properties assignments (#3817) --- modules/apigee/main.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/apigee/main.tf b/modules/apigee/main.tf index 225bc5918..2f7a21303 100644 --- a/modules/apigee/main.tf +++ b/modules/apigee/main.tf @@ -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 } } }