provider/digitalocean: Addsa FQDN out to the `digitalocean_record`
resource. This is a computed field
This commit is contained in:
parent
73102aba42
commit
b57a3094f6
|
@ -62,6 +62,11 @@ func resourceDigitalOceanRecord() *schema.Resource {
|
||||||
Computed: true,
|
Computed: true,
|
||||||
ForceNew: true,
|
ForceNew: true,
|
||||||
},
|
},
|
||||||
|
|
||||||
|
"fqdn": &schema.Schema{
|
||||||
|
Type: schema.TypeString,
|
||||||
|
Computed: true,
|
||||||
|
},
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -146,6 +151,10 @@ func resourceDigitalOceanRecordRead(d *schema.ResourceData, meta interface{}) er
|
||||||
d.Set("priority", strconv.Itoa(rec.Priority))
|
d.Set("priority", strconv.Itoa(rec.Priority))
|
||||||
d.Set("port", strconv.Itoa(rec.Port))
|
d.Set("port", strconv.Itoa(rec.Port))
|
||||||
|
|
||||||
|
en := constructFqdn(rec.Name, d.Get("domain").(string))
|
||||||
|
log.Printf("[DEBUG] Constructred FQDN: %s", en)
|
||||||
|
d.Set("fqdn", en)
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -196,3 +205,12 @@ func resourceDigitalOceanRecordDelete(d *schema.ResourceData, meta interface{})
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func constructFqdn(name, domain string) string {
|
||||||
|
rn := strings.ToLower(strings.TrimSuffix(name, "."))
|
||||||
|
domain = strings.TrimSuffix(domain, ".")
|
||||||
|
if !strings.HasSuffix(rn, domain) {
|
||||||
|
rn = strings.Join([]string{name, domain}, ".")
|
||||||
|
}
|
||||||
|
return rn
|
||||||
|
}
|
||||||
|
|
|
@ -5,12 +5,35 @@ import (
|
||||||
"strconv"
|
"strconv"
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
|
"strings"
|
||||||
|
|
||||||
"github.com/digitalocean/godo"
|
"github.com/digitalocean/godo"
|
||||||
"github.com/hashicorp/terraform/helper/acctest"
|
"github.com/hashicorp/terraform/helper/acctest"
|
||||||
"github.com/hashicorp/terraform/helper/resource"
|
"github.com/hashicorp/terraform/helper/resource"
|
||||||
"github.com/hashicorp/terraform/terraform"
|
"github.com/hashicorp/terraform/terraform"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
func TestDigitalOceanRecordConstructFqdn(t *testing.T) {
|
||||||
|
cases := []struct {
|
||||||
|
Input, Output string
|
||||||
|
}{
|
||||||
|
{"www", "www.nonexample.com"},
|
||||||
|
{"dev.www", "dev.www.nonexample.com"},
|
||||||
|
{"*", "*.nonexample.com"},
|
||||||
|
{"nonexample.com", "nonexample.com"},
|
||||||
|
{"test.nonexample.com", "test.nonexample.com"},
|
||||||
|
{"test.nonexample.com.", "test.nonexample.com"},
|
||||||
|
}
|
||||||
|
|
||||||
|
domain := "nonexample.com"
|
||||||
|
for _, tc := range cases {
|
||||||
|
actual := constructFqdn(tc.Input, domain)
|
||||||
|
if actual != tc.Output {
|
||||||
|
t.Fatalf("input: %s\noutput: %s", tc.Input, actual)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
func TestAccDigitalOceanRecord_Basic(t *testing.T) {
|
func TestAccDigitalOceanRecord_Basic(t *testing.T) {
|
||||||
var record godo.DomainRecord
|
var record godo.DomainRecord
|
||||||
domain := fmt.Sprintf("foobar-test-terraform-%s.com", acctest.RandString(10))
|
domain := fmt.Sprintf("foobar-test-terraform-%s.com", acctest.RandString(10))
|
||||||
|
@ -31,6 +54,8 @@ func TestAccDigitalOceanRecord_Basic(t *testing.T) {
|
||||||
"digitalocean_record.foobar", "domain", domain),
|
"digitalocean_record.foobar", "domain", domain),
|
||||||
resource.TestCheckResourceAttr(
|
resource.TestCheckResourceAttr(
|
||||||
"digitalocean_record.foobar", "value", "192.168.0.10"),
|
"digitalocean_record.foobar", "value", "192.168.0.10"),
|
||||||
|
resource.TestCheckResourceAttr(
|
||||||
|
"digitalocean_record.foobar", "fqdn", strings.Join([]string{"terraform", domain}, ".")),
|
||||||
),
|
),
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
|
@ -45,4 +45,5 @@ The following arguments are supported:
|
||||||
The following attributes are exported:
|
The following attributes are exported:
|
||||||
|
|
||||||
* `id` - The record ID
|
* `id` - The record ID
|
||||||
|
* `fqdn` - The FQDN of the record
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue