Wavefront Provider: Installation & Configuration
The Pulumi Wavefront provider uses the Wavefront SDK to manage and provision resources.
Installation
The Wavefront provider is available as a package in all Pulumi languages:
- JavaScript/TypeScript:
@pulumi/wavefront
- Python:
pulumi-wavefront
- Go:
github.com/pulumi/pulumi-wavefront/sdk/go/wavefront
- .NET:
Pulumi.Wavefront
- Java:
com.pulumi/wavefront
Configuring Credentials
Pulumi relies on the Wavefront SDK to authenticate requests from your computer to Wavefront. Your credentials are never sent to pulumi.com. The Pulumi Wavefront Provider needs to be configured with Wavefront credentials before it can be used to create resources.
Once the credentials are obtained, there are two ways to communicate your authorization tokens to Pulumi:
Set the environment variables for
WAVEFRONT_TOKEN
andWAVEFRONT_ADDRESS
:$ export WAVEFRONT_TOKEN=XXXXXXXXXXXXXX $ export WAVEFRONT_ADDRESS=YYYYYYYYYYYYYY
Set them using configuration, if you prefer that they be stored alongside your Pulumi stack for easy multi-user access:
$ pulumi config set wavefront:token XXXXXXXXXXXXXX --secret $ pulumi config set wavefront:address YYYYYYYYYYYYYY
Remember to pass --secret
when setting wavefront:token
so that it is properly encrypted. The complete list of
configuration parameters is in the Wavefront provider README.