The Thalassa Cloud Resource Provider for Pulumi lets you manage Thalassa resources.
The provider is built on the upstream Terraform provider.
This provider can be used either via the language SDKs (recommended). When you run pulumi up, the Pulumi CLI will automatically download the matching provider plugin
from the GitHub Releases page. or by manually installing the plugin.
npm install @sandervb2/pulumi-thalassa
# or
yarn add @sandervb2/pulumi-thalassapip install pulumi-thalassago get github.com/sandervb2/pulumi-thalassa/sdk/go/...dotnet add package Pulumi.ThalassaIf you want to install the plugin manually:
-
Download the appropriate archive version for your OS/arch:
wget https://github.com/sandervb2/pulumi-thalassa/releases/download/vX.Y.Z/pulumi-resource-thalassa-vX.Y.Z-OPERATING_SYSTEM-ARCH.tar.gz
-
Install it into Pulumi:
pulumi plugin install resource thalassa X.Y.Z \ -f ./pulumi-resource-thalassa-vX.Y.Z-OPERATING_SYSTEM-ARCH.tar.gz
The provider can be configured via Pulumi config values or via environment variables.
pulumi config set thalassa:organisationId <organisation-id>
pulumi config set thalassa:token <secret-token> --secretExample (TypeScript):
import * as thalassa from "@sandervb2/pulumi-thalassa";
const vpc = new thalassa.Vpc("example", {
name: "my-vpc",
});import * as thalassa from "@sandervb2/pulumi-thalassa";
const provider = new thalassa.Provider("custom", {
organisationId: process.env.THALASSA_ORGANISATION_ID,
token: process.env.THALASSA_TOKEN,
});
const vpc = new thalassa.Vpc("example", {
name: "my-vpc",
}, { provider });For detailed reference documentation, please visit the upstream Terraform provider's documentation at: 👉 https://registry.terraform.io/providers