This provider implements aws endpoints that are currently not available in upstream repositories.
- Clone the repository
- Enter the repository directory
- Build the provider using the command:
make install
See the examples/
for using the provider.
To compile the provider, run go install
. This will build the provider and put the provider binary in the $GOPATH/bin
directory.
Update ~/.terraformrc
to use the provider locally.
provider_installation {
dev_overrides {
"skpr/skpraws" = "/my/path/to/go/bin"
}
# Install other providers normally from the registry
direct {}
}
To generate or update documentation, run make generate
.
In order to run the full suite of Acceptance tests, run make testacc
.