This repository provides helper data sources for use with Amazon EKS.
- Clone the repository
- Enter the repository directory
- Build the provider using the Go
build
command:
$ go build
This provider uses Go modules. Please see the Go documentation for the most up to date information about using Go modules.
To add a new dependency github.com/author/dependency
to your Terraform provider:
go get github.com/author/dependency
go mod tidy
Then commit the changes to go.mod
and go.sum
.
You can use the provider via the Terraform provider registry.
If you wish to work on the provider, you'll first need Go installed on your machine (see Requirements above).
To compile the provider, run go build
.
To generate or update documentation, run go generate
.