From e376b7c9f331b02b862b734e00290d3a3a6aceac Mon Sep 17 00:00:00 2001 From: Balazs Novak-Bohak Date: Wed, 25 Oct 2023 11:31:43 +0200 Subject: [PATCH] Fixed template descr --- ndo_schemas.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ndo_schemas.tf b/ndo_schemas.tf index a619598..5ac76d0 100644 --- a/ndo_schemas.tf +++ b/ndo_schemas.tf @@ -63,7 +63,7 @@ resource "mso_schema" "schema" { content { name = template.value.name display_name = template.value.name - description = try(template.description, null) + description = try(template.value.description, null) tenant_id = var.manage_tenants ? mso_tenant.tenant[template.value.tenant].id : data.mso_tenant.template_tenant[template.value.tenant].id template_type = "aci_multi_site" }