provider/digitalocean: comment out test for relative DNS records
Until we hear back from DigitalOcean on whether this behavior is supposed to be supported or not.
This commit is contained in:
parent
bcfbf11120
commit
75d056c878
|
@ -104,6 +104,15 @@ func TestAccDigitalOceanRecord_HostnameValue(t *testing.T) {
|
|||
})
|
||||
}
|
||||
|
||||
// This test fails with:
|
||||
//
|
||||
// POST https://api.digitalocean.com/v2/domains/foobar-test-terraform.com/records:
|
||||
// 422 Data needs to end with a dot (.)
|
||||
//
|
||||
// Which seems like a behavior change on the DO API side. Opened support ticket
|
||||
// #826791 to ask DigitalOcean about this, and we'll comment out the test for
|
||||
// now. --phinze
|
||||
/*
|
||||
func TestAccDigitalOceanRecord_RelativeHostnameValue(t *testing.T) {
|
||||
var record godo.DomainRecord
|
||||
|
||||
|
@ -130,6 +139,7 @@ func TestAccDigitalOceanRecord_RelativeHostnameValue(t *testing.T) {
|
|||
},
|
||||
})
|
||||
}
|
||||
*/
|
||||
|
||||
func TestAccDigitalOceanRecord_ExternalHostnameValue(t *testing.T) {
|
||||
var record godo.DomainRecord
|
||||
|
|
Loading…
Reference in New Issue