providers/digitalocean: use real bools for droplet creation

Fixes #792
Depends on https://github.com/pearkes/digitalocean/pull/5
This commit is contained in:
Jack Pearkes 2015-02-26 09:37:05 -08:00
parent 360c62bd6c
commit fbf2306d73
1 changed files with 6 additions and 6 deletions

View File

@ -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 {