First time setup:
make init
Run the following command to build the provider
make build
Generate/update documentation
Do not edit files under docs
, they are generated from templates
and the source code.
To preview how the docs will look in the terraform registry, paste them here https://registry.terraform.io/tools/doc-preview
Important: Run this command before commiting changes to git, to update the docs for recent changes.
make docs
Test sample configuration
First, build and install the provider.
make install
Then, run the following command to initialize the workspace and apply the sample configuration.
terraform init && terraform apply
For local binary, configure terraform as:
terraform {
required_providers {
satori = {
version = "~>1.0.0"
source = "satoricyber.com/terraform/satori"
}
}
}