This is a Terraform provider for managing example resources.
go build -o terraform-provider-exampleterraform {
required_providers {
example = {
source = "yourorg/example"
version = "~> 1.0"
}
}
}
provider "example" {
endpoint = "https://api.example.com"
}If you wish to work on the provider, you'll first need Go installed.
To compile the provider, run:
make buildTo install the provider locally for testing:
make installTo run tests:
make testTo run acceptance tests:
make testaccMPL-2.0