Splunk Provider: Installation & Configuration
The Pulumi Splunk provider uses the Splunk SDK to manage and provision resources.
Installation
The Splunk provider is available as a package in all Pulumi languages:
- JavaScript/TypeScript:
@pulumi/splunk
- Python:
pulumi-splunk
- Go:
github.com/pulumi/pulumi-splunk/sdk/go/splunk
- .NET:
Pulumi.Splunk
- Java:
com.pulumi/splunk
Configuring Credentials
Pulumi relies on the Splunk SDK to authenticate requests from your computer to Splunk. Your credentials are never sent to pulumi.com. The Pulumi Splunk Provider needs to be configured with Splunk 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
SPLUNK_URL
,SPLUNK_USERNAME
andSPLUNK_PASSWORD
:$ export SPLUNK_URL=XXXXXXXXXXXXXX $ export SPLUNK_USERNAME=YYYYYYYYYYYYYY $ export SPLUNK_PASSWORD=ZZZZZZZZZZZZZZ
Set them using configuration, if you prefer that they be stored alongside your Pulumi stack for easy multi-user access:
$ pulumi config set splunk:url XXXXXXXXXXXXXX $ pulumi config set splunk:username YYYYYYYYYYYYYY $ pulumi config set splunk:password ZZZZZZZZZZZZZZ --secret
Remember to pass --secret
when setting splunk:password
so that it is properly encrypted. The complete list of
configuration parameters is in the Splunk provider README.