Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/phogolabs/terraform-provider-sendgrid
A package contains a useful Terraform Providers
https://github.com/phogolabs/terraform-provider-sendgrid
hydra oauth2 terraform-provider
Last synced: 11 days ago
JSON representation
A package contains a useful Terraform Providers
- Host: GitHub
- URL: https://github.com/phogolabs/terraform-provider-sendgrid
- Owner: phogolabs
- License: mit
- Created: 2019-03-06T12:30:59.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2022-11-09T12:50:16.000Z (about 2 years ago)
- Last Synced: 2024-11-23T11:10:34.559Z (2 months ago)
- Topics: hydra, oauth2, terraform-provider
- Language: Go
- Size: 179 KB
- Stars: 3
- Watchers: 3
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Contributing: .github/CONTRIBUTING.md
- License: LICENSE
- Code of conduct: .github/CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# terraform-provider-sendgrid
[![Documentation][godoc-img]][godoc-url]
![License][license-img]
[![Build Status][action-img]][action-url]
[![Go Report Card][report-img]][report-url]It's a terraform provider that allow creating a template in [SendGrid](https://www.sendgrid.com).
## Usage
You can use the [example](./example.tf) or code snippet below:
```hcl
provider "sendgrid" {
api_key = "your-api-key"
}resource "sendgrid_template" "my_template" {
name = "my-template-1"
}resource "sendgrid_template_version" "content" {
name = "content"
template_id = "${sendgrid_template.my_template.id}"
subject = "Welcome to the House !!!!"
html_content = "Welcome to My House
"
plain_content = "Welcome"
active = true
}
```[godoc-url]: https://godoc.org/github.com/phogolabs/terraform-provider
[godoc-img]: https://godoc.org/github.com/phogolabs/terraform-provider?status.svg
[license-img]: https://img.shields.io/badge/license-MIT-blue.svg
[report-img]: https://goreportcard.com/badge/github.com/phogolabs/terraform-provider
[report-url]: https://goreportcard.com/report/github.com/phogolabs/terraform-provider
[codecov-url]: https://codecov.io/gh/phogolabs/terraform-provider
[codecov-img]: https://codecov.io/gh/phogolabs/terraform-provider/branch/master/graph/badge.svg
[action-img]: https://github.com/phogolabs/terraform-provider/workflows/main/badge.svg
[action-url]: https://github.com/phogolabs/terraform-provider/actions