- Website: https://www.terraform.io
- Mailing list: Google Groups
Clone repository to: $GOPATH/src/github.com/MissionCriticalCloud/terraform-provider-cosmic
$ mkdir -p $GOPATH/src/github.com/MissionCriticalCloud; cd $GOPATH/src/github.com/MissionCriticalCloud
$ git clone [email protected]:MissionCriticalCloud/terraform-provider-cosmic
Enter the provider directory and build the provider
$ cd $GOPATH/src/github.com/MissionCriticalCloud/terraform-provider-cosmic
$ make build
If you're building the provider, follow the instructions to install it as a plugin. After placing it into your plugins directory, run terraform init
to initialize it.
If you wish to work on the provider, you'll first need Go installed on your machine (version 1.11+ is required). You'll also need to correctly setup a GOPATH, as well as adding $GOPATH/bin
to your $PATH
.
To compile the provider, run make build
. This will build the provider and put the provider binary in the $GOPATH/bin
directory.
$ make build
...
$ $GOPATH/bin/terraform-provider-cosmic
...
In order to test the provider, you can simply run make test
.
$ make test
In order to run the full suite of Acceptance tests, run make testacc
.
$ make testacc
Note: Acceptance tests create real resources and require the following shell variables to be exported:
COSMIC_API_URL
- Cosmic API URL to run tests againstCOSMIC_API_KEY
- Valid API keyCOSMIC_SECRET_KEY
- Valid API secret keyCOSMIC_ZONE
- Cosmic zone to run tests against
Optionally the following need to be exported for certain tests:
COSMIC_DISK_OFFERING
- An existing disk offering to test storageCOSMIC_SERVICE_OFFERING_1
- An existing service offering to test provisioning instancesCOSMIC_SERVICE_OFFERING_2
- A second existing service offering to test provisioning instancesCOSMIC_TEMPLATE
- An existing template to test provisioning instancesCOSMIC_VPC_NETWORK_OFFERING
- An existing VPC network offering to test provisioning VPC networks