Skip to content
This repository has been archived by the owner on Dec 17, 2020. It is now read-only.

Error: updating CNAME record is not supported #41

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions infoblox/resource_infoblox_cname_record.go
Original file line number Diff line number Diff line change
Expand Up @@ -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{
Expand All @@ -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{
Expand All @@ -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.",
},
},
Expand Down