From b557ed1ac7c6ad01259db673833272517f1e89e6 Mon Sep 17 00:00:00 2001 From: akinross Date: Mon, 14 Oct 2024 11:37:43 +0200 Subject: [PATCH] [bugfix] Fix computed behaviour when configuration not provided for relation_infra_rs_att_ent_p and relation_infra_rs_l2_inst_pol in the aci_leaf_access_bundle_policy_group resource --- aci/resource_aci_infraaccbndlgrp.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/aci/resource_aci_infraaccbndlgrp.go b/aci/resource_aci_infraaccbndlgrp.go index e2717a386..2e76da58c 100644 --- a/aci/resource_aci_infraaccbndlgrp.go +++ b/aci/resource_aci_infraaccbndlgrp.go @@ -179,13 +179,13 @@ func resourceAciPCVPCInterfacePolicyGroup() *schema.Resource { Optional: true, }, "relation_infra_rs_att_ent_p": &schema.Schema{ - Type: schema.TypeString, - + Type: schema.TypeString, + Computed: true, Optional: true, }, "relation_infra_rs_l2_inst_pol": &schema.Schema{ - Type: schema.TypeString, - + Type: schema.TypeString, + Computed: true, Optional: true, }, }),