Skip to content

Commit

Permalink
feat(DNSimple): add DNSimple support
Browse files Browse the repository at this point in the history
  • Loading branch information
rixrix committed Dec 10, 2016
1 parent 8d0cc7a commit 3c95044
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
* Add support for `Cobbler`
* Add support for `Datadog`
* Add support for `DNSMadeEasy`
* Add support for `DNSimple`

# 0.10.0

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ This extension for Visual Studio Code adds snippets for Terraform.
* Cobbler
* Datadog
* DNSMadeEasy
* DNSimple
* AWS
* Resources w/ examples
* All [Data Sources](https://www.terraform.io/docs/providers/aws/d/acm_certificate.html),
Expand Down Expand Up @@ -98,7 +99,6 @@ A massive list of things to add
### Providers
* DNSimple
* Dyn
* Fastly
* Grafana
Expand Down
26 changes: 26 additions & 0 deletions snippets/terraform.json
Original file line number Diff line number Diff line change
Expand Up @@ -4716,4 +4716,30 @@
"}"
]
},
"dnsimple": {
"prefix": "tf-dnsimple",
"description": "define a dnsimple provider.",
"body": [
"provider \"dnsimple\" {",
" token = \"\\${var.dnsimple_token}\"",
" email = \"\\${var.dnsimple_email}\"",
"}"
]
},
"dnsimple_record": {
"prefix": "tf-dnsimple_record",
"description": "define dnsimple_record resource.",
"body": [
"resource \"dnsimple_record\" \"${myResourceName}\" {",
" name = \"my-${myResourceName}\"",
" description = \"my-description-${myResourceName}\"\n",
" # Add a record to the root domain",
" domain = \"\\${var.dnsimple_domain}\"",
" name = \"",
" value = \"192.168.0.11\"",
" type = \"A\"",
" ttl = 3600",
"}"
]
},
}

0 comments on commit 3c95044

Please sign in to comment.