Requirements
Developing the Provider
If you wish to work on the provider, you'll first need Go installed on your machine (please check the requirements before proceeding).
Note: This project uses Go Modules making it safe to work with it outside of your existing GOPATH. The instructions that follow assume a directory in your home directory outside of the standard GOPATH (i.e $HOME/development/terraform-providers/
).
Clone repository to: $HOME/development/terraform-providers/
$ git clone git@github.com:iwarapter/terraform-provider-pingaccess.git
...
To compile the provider, run make build
. This will build the provider and put the provider binary in the local directory.
$ make build
...
$ terraform-provider-pingaccess
...
Using the Provider
Please see the terraform registry docs for detailed usage documentation:
https://registry.terraform.io/providers/iwarapter/pingaccess/latest/docs
The provider is currently tested against the following versions of PingAccess
PingAccess |
Status |
6.2.2 |
|
6.3.3 |
|
7.0.3 |
|
Testing the Provider
In order to test the provider, you can run make test
.
$ make test
This will run the acceptance tests by initializing a local docker container to execute the functional tests against.