terraform/builtin/providers/dnsimple
James Healy 593a0c699b Allow dnsimple_record.priority attribute to be set (#12843)
* Allow priority attribute of dnsimple_record to be set

Some DNS record types (like MX) allow a priority to specified, and the
ability to do so is important in many environments.

This diff will change dnsimple_record.priority from computed to
optional, allowing it to be used in terraform configs like so:

    resource "dnsimple_record" "mx1" {
        domain = "example.com"
        name = ""
        value = "mx1.example.com"
        type = "MX"
        priority = "1"
    }

    resource "dnsimple_record" "mx2" {
        domain = "example.com"
        name = ""
        value = "mx2.example.com"
        type = "MX"
        priority = "2"
    }

* mention new priority attribute of dnsimple_record

* add acceptance specs for creating/updating MX records at dnsimple
2017-03-18 13:04:48 +00:00
..
config.go Upgrade DNSimple provider to API v2 (#10760) 2017-03-02 05:12:34 +00:00
provider.go provider/dnsimple: Don't prompt the user for email address (#12619) 2017-03-13 10:07:53 +02:00
provider_test.go Upgrade DNSimple provider to API v2 (#10760) 2017-03-02 05:12:34 +00:00
resource_dnsimple_record.go Allow dnsimple_record.priority attribute to be set (#12843) 2017-03-18 13:04:48 +00:00
resource_dnsimple_record_test.go Allow dnsimple_record.priority attribute to be set (#12843) 2017-03-18 13:04:48 +00:00