From c57020cf24481580080c0c720862a229483e23f0 Mon Sep 17 00:00:00 2001 From: de ROMEMONT Date: Fri, 4 Dec 2020 11:51:14 +0100 Subject: [PATCH] https://github.com/terraform-providers/terraform-provider-infoblox/issues/36 --- infoblox/resource_infoblox_cname_record.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/infoblox/resource_infoblox_cname_record.go b/infoblox/resource_infoblox_cname_record.go index 229b537..8a07137 100755 --- a/infoblox/resource_infoblox_cname_record.go +++ b/infoblox/resource_infoblox_cname_record.go @@ -20,6 +20,7 @@ func resourceCNAMERecord() *schema.Resource { "zone": &schema.Schema{ Type: schema.TypeString, Required: true, + ForceNew: true, Description: "Zone under which record has to be created.", }, "dns_view": &schema.Schema{ @@ -31,11 +32,13 @@ func resourceCNAMERecord() *schema.Resource { "canonical": &schema.Schema{ Type: schema.TypeString, Required: true, + ForceNew: true, Description: "The Canonical name for the record.", }, "alias": &schema.Schema{ Type: schema.TypeString, Required: true, + ForceNew: true, Description: "The alias name for the record.", }, "vm_id": &schema.Schema{ @@ -46,6 +49,7 @@ func resourceCNAMERecord() *schema.Resource { "tenant_id": &schema.Schema{ Type: schema.TypeString, Required: true, + ForceNew: true, Description: "Unique identifier of your tenant in cloud.", }, },