Skip to content

Commit

Permalink
feat(Mailgun): add Mailgun support
Browse files Browse the repository at this point in the history
  • Loading branch information
rixrix committed Dec 10, 2016
1 parent 6effd4f commit 5eefc9e
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
* Add support for `InfluxDB`
* Add support for `Librato`
* Add support for `Logentries`
* Add support for `Mailgun`

# 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 @@ -39,6 +39,7 @@ This extension for Visual Studio Code adds snippets for Terraform.
* InfluxDB
* Librato
* Logentries
* Mailgun
* AWS
* Resources w/ examples
* All [Data Sources](https://www.terraform.io/docs/providers/aws/d/acm_certificate.html),
Expand Down Expand Up @@ -105,7 +106,6 @@ A massive list of things to add
### Providers
* Mailgun
* Microsoft Azure (Legacy ASM)
* OpenStack
* Packet
Expand Down
21 changes: 21 additions & 0 deletions snippets/terraform.json
Original file line number Diff line number Diff line change
Expand Up @@ -4987,5 +4987,26 @@
" location = \"www.example.com\"",
"}"
]
},
"mailgun": {
"prefix": "tf-mailgun",
"description": "define a mailgun provider.",
"body": [
"provider \"mailgun\" {",
" api_key = \"${api_key}\"",
"}"
]
},
"mailgun_domain": {
"prefix": "tf-mailgun_domain",
"description": "define mailgun_domain resource.",
"body": [
"resource \"mailgun_domain\" \"${myResourceName}\" {",
" name = \"my-${myResourceName}\"",
" description = \"my-description-${myResourceName}\"\n",
" spam_action = \"disabled\"",
" smtp_password = \"foobar\"",
"}"
]
}
}

0 comments on commit 5eefc9e

Please sign in to comment.