Prerequisites
Usage
terraform {
required_providers {
zesty = {
source = "zesty-co/zesty"
version = "0.1.5"
}
}
required_version = ">= 0.13"
}
provider "zesty" {
token = "{{zesty-token}}"
}
To avoid committing your token to git, you can pass the token via environment variables:
$ ZESTY_API_TOKEN={{zesty-token}} terraform plan
To see additional information, you can increase the terraform log level, e.g:
$ TF_LOG=DEBUG terraform plan
For more examples, review the examples directory.
Local Development
Before making any contribution, please make sure to review the contribution guidelines
Steps to install locally:
git clone https://github.com/zesty-co/terraform-provider-zesty.git
cd terraform-provider-zesty
make terraformrc
make install
Steps to run unit tests:
make test