The StackPath provider is a plugin for Terraform to interact with resources on the StackPath edge platform. It is publicly available on the Terraform registry. Please see the official documentation to get started.
Run the following command to build the provider:
$ make build
Run the following command to install the built provider:
$ make install
Once the plugin has been installed, run terraform init
to have terraform discover the StackPath plugin.
Run the following command to run the provider's unit tests:
$ make test
In order to run the full suite of acceptance tests, run make testacc
. You must declare a valid StackPath stack ID or slug, API client ID, and API client secret in the STACKPATH_STACK_ID
, STACKPATH_CLIENT_ID
, and STACKPATH_CLIENT_SECRET
environment variables:
Note: Acceptance tests create real resources, and often cost money to run.
$ STACKPATH_STACK_ID=my-stack-id STACKPATH_CLIENT_ID=my-client-id STACKPATH_CLIENT_SECRET=my-client-secret make testacc