https://github.com/glints-dev/terraform-provider-aws-eks-helper
The AWS EKS Helper provider provides helper resources to interact with Amazon EKS.
https://github.com/glints-dev/terraform-provider-aws-eks-helper
Last synced: 5 months ago
JSON representation
The AWS EKS Helper provider provides helper resources to interact with Amazon EKS.
- Host: GitHub
- URL: https://github.com/glints-dev/terraform-provider-aws-eks-helper
- Owner: glints-dev
- License: mit
- Created: 2021-02-15T13:24:01.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2023-06-04T09:06:39.000Z (about 3 years ago)
- Last Synced: 2024-06-20T06:22:19.312Z (about 2 years ago)
- Language: Go
- Size: 43 KB
- Stars: 0
- Watchers: 6
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Terraform Provider AWS EKS Helper
This repository provides helper data sources for use with [Amazon EKS](https://aws.amazon.com/eks/).
## Requirements
- [Terraform](https://www.terraform.io/downloads.html) >= 0.13.x
- [Go](https://golang.org/doc/install) >= 1.18
## Building The Provider
1. Clone the repository
2. Enter the repository directory
3. Build the provider using the Go `build` command:
```sh
$ go build
```
## Adding Dependencies
This provider uses [Go modules](https://github.com/golang/go/wiki/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`.
## Using the provider
You can use the provider via the [Terraform provider registry](https://registry.terraform.io/providers/glints/aws-eks-helper).
## Developing the Provider
If you wish to work on the provider, you'll first need [Go](http://www.golang.org) installed on your machine (see [Requirements](#requirements) above).
To compile the provider, run `go build`.
To generate or update documentation, run `go generate`.