providers/dnsimple: default ttl to 3600

Since the field is optional and DNSimple defaults it to 3600 on their end, `terraform plan` currently will report `ttl: "3600" => ""`.
This commit is contained in:
Justin Campbell 2015-04-28 09:19:49 -04:00
parent f952228696
commit 6f4b7b25c6
1 changed files with 1 additions and 0 deletions

View File

@ -49,6 +49,7 @@ func resourceDNSimpleRecord() *schema.Resource {
"ttl": &schema.Schema{
Type: schema.TypeString,
Optional: true,
Default: "3600",
},
"priority": &schema.Schema{