provider/digitalocean: move floating ip test out of region w/ capacity problems
Should fix error seen here: https://travis-ci.org/hashicorp/terraform/builds/100990006
This commit is contained in:
parent
8df91417be
commit
764dad06ae
|
@ -42,7 +42,7 @@ func TestAccDigitalOceanFloatingIP_Droplet(t *testing.T) {
|
||||||
Check: resource.ComposeTestCheckFunc(
|
Check: resource.ComposeTestCheckFunc(
|
||||||
testAccCheckDigitalOceanFloatingIPExists("digitalocean_floating_ip.foobar", &floatingIP),
|
testAccCheckDigitalOceanFloatingIPExists("digitalocean_floating_ip.foobar", &floatingIP),
|
||||||
resource.TestCheckResourceAttr(
|
resource.TestCheckResourceAttr(
|
||||||
"digitalocean_floating_ip.foobar", "region", "sgp1"),
|
"digitalocean_floating_ip.foobar", "region", "nyc3"),
|
||||||
),
|
),
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
@ -114,7 +114,7 @@ resource "digitalocean_droplet" "foobar" {
|
||||||
name = "baz"
|
name = "baz"
|
||||||
size = "1gb"
|
size = "1gb"
|
||||||
image = "centos-5-8-x32"
|
image = "centos-5-8-x32"
|
||||||
region = "sgp1"
|
region = "nyc3"
|
||||||
ipv6 = true
|
ipv6 = true
|
||||||
private_networking = true
|
private_networking = true
|
||||||
ssh_keys = ["${digitalocean_ssh_key.foobar.id}"]
|
ssh_keys = ["${digitalocean_ssh_key.foobar.id}"]
|
||||||
|
|
Loading…
Reference in New Issue