Linode v4.30.0 published on Friday, Nov 8, 2024 by Pulumi
Linode Provider: Installation & Configuration
The Pulumi Linode provider uses the Linode SDK to manage and provision resources.
Installation
The Linode provider is available as a package in all Pulumi languages:
- JavaScript/TypeScript:
@pulumi/linode
- Python:
pulumi-linode
- Go:
github.com/pulumi/pulumi-linode/sdk/v3/go/linode
- .NET:
Pulumi.Linode
- Java:
com.pulumi/linode
Configuring Credentials
Pulumi relies on the Linode SDK to authenticate requests from your computer to Linode. Your credentials are never sent to pulumi.com. The Pulumi Linode Provider needs to be configured with Linode 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 variable
LINODE_TOKEN
:$ export LINODE_TOKEN=XXXXXXXXXXXXXX
Set them using configuration, if you prefer that they be stored alongside your Pulumi stack for easy multi-user access:
$ pulumi config set linode:token XXXXXXXXXXXXXX --secret
Remember to pass --secret
when setting token
so that it is properly encrypted.