DNSimple does not support changing a record domain or type

This commit is contained in:
David Radcliffe 2015-07-17 17:04:22 -04:00
parent 009dba178f
commit 94ef573b66

View File

@ -19,6 +19,7 @@ func resourceDNSimpleRecord() *schema.Resource {
"domain": &schema.Schema{ "domain": &schema.Schema{
Type: schema.TypeString, Type: schema.TypeString,
Required: true, Required: true,
ForceNew: true,
}, },
"domain_id": &schema.Schema{ "domain_id": &schema.Schema{
@ -39,6 +40,7 @@ func resourceDNSimpleRecord() *schema.Resource {
"type": &schema.Schema{ "type": &schema.Schema{
Type: schema.TypeString, Type: schema.TypeString,
Required: true, Required: true,
ForceNew: true,
}, },
"value": &schema.Schema{ "value": &schema.Schema{