Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sinsoku/terraform-provider-esa
https://github.com/sinsoku/terraform-provider-esa
Last synced: 2 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/sinsoku/terraform-provider-esa
- Owner: sinsoku
- License: mpl-2.0
- Created: 2020-06-18T15:48:18.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-06-24T13:56:06.000Z (over 4 years ago)
- Last Synced: 2024-11-11T10:55:04.421Z (2 months ago)
- Language: Go
- Size: 34.2 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Terraform Provider for esa
![Test](https://github.com/sinsoku/terraform-provider-esa/workflows/Test/badge.svg)
## Installation
Download the latest version from [GitHub Releases](https://github.com/sinsoku/terraform-provider-esa/releases).
Unzip the file, and then manually installed into `~/.terraform.d/plugins`.
## Usage Example
```hcl
provider "esa" {
token = "${var.esa_token}"
team = "${var.esa_team}"
}resource "esa_member" "foo" {
email = "[email protected]"
}data "esa_user" "current" {}
output "current_user_name" {
value = data.esa_user.current.name
}
```## Contributing
Bug reports and pull requests are welcome on GitHub at https://github.com/sinsoku/terraform-provider-esa/.