Merge pull request #1061 from hashicorp/digitalocean-droplet-bools

providers/digitalocean: use real bools for droplet creation
pull/1074/head
Jack Pearkes 11 years ago
commit 03cd4ec604

@ -52,7 +52,7 @@ func resourceDigitalOceanDroplet() *schema.Resource {
},
"backups": &schema.Schema{
Type: schema.TypeString,
Type: schema.TypeBool,
Optional: true,
},
@ -112,15 +112,15 @@ func resourceDigitalOceanDropletCreate(d *schema.ResourceData, meta interface{})
}
if attr, ok := d.GetOk("backups"); ok {
opts.Backups = attr.(string)
opts.Backups = attr.(bool)
}
if attr, ok := d.GetOk("ipv6"); ok && attr.(bool) {
opts.IPV6 = "true"
if attr, ok := d.GetOk("ipv6"); ok {
opts.IPV6 = attr.(bool)
}
if attr, ok := d.GetOk("private_networking"); ok && attr.(bool) {
opts.PrivateNetworking = "true"
if attr, ok := d.GetOk("private_networking"); ok {
opts.PrivateNetworking = attr.(bool)
}
if attr, ok := d.GetOk("user_data"); ok {

Loading…
Cancel
Save