Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/sinsoku/terraform-provider-esa


https://github.com/sinsoku/terraform-provider-esa

Last synced: 2 days ago
JSON representation

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/.