Skip to content

Latest commit

 

History

History
45 lines (30 loc) · 850 Bytes

README.md

File metadata and controls

45 lines (30 loc) · 850 Bytes

POC in a Box

Clone this repository:

git clone https://github.com/signalfx/poc-in-a-box.git

Initialise Terraform:

$ terraform init

Create a workspace for the POC customer:

$ terraform workspace new bar

Where bar is the company name of the customer

Review the execution plan:

$ terraform plan -var="access_token=abc123" -var="realm=eu0"

Where access_token is the SignalFx Access Token and realm is either eu0, us1 or ap0

Apply the changes:

$ terraform apply -var="access_token=abc123" -var="realm=eu0"

Destory all detectors

You will first need to ensure you are in the correct workspace for the customer e.g.

$ terraform workspace select bar

Where bar is the company name of the customer

$ terraform destroy -var="access_token=abc123" -var="realm=eu0"