Merge branch 'patch-1' of https://github.com/goloroden/terraform into goloroden-patch-1
This commit is contained in:
commit
ed49a23dab
|
@ -12,6 +12,18 @@ Provides a DNSimple record resource.
|
|||
|
||||
## Example Usage
|
||||
|
||||
```
|
||||
# Add a record to the root domain
|
||||
resource "dnsimple_record" "foobar" {
|
||||
domain = "${var.dnsimple_domain}"
|
||||
name = ""
|
||||
value = "192.168.0.11"
|
||||
type = "A"
|
||||
ttl = 3600
|
||||
}
|
||||
```
|
||||
|
||||
## Add a record to a sub-domain
|
||||
```
|
||||
# Add a record to the domain
|
||||
resource "dnsimple_record" "foobar" {
|
||||
|
@ -33,6 +45,7 @@ The following arguments are supported:
|
|||
* `type` - (Required) The type of the record
|
||||
* `ttl` - (Optional) The TTL of the record
|
||||
|
||||
|
||||
## Attributes Reference
|
||||
|
||||
The following attributes are exported:
|
||||
|
@ -45,4 +58,3 @@ The following attributes are exported:
|
|||
* `priority` - The priority of the record
|
||||
* `domain_id` - The domain ID of the record
|
||||
* `hostname` - The FQDN of the record
|
||||
|
||||
|
|
Loading…
Reference in New Issue