Standard Library: Installation & Configuration
Installation
The Pulumi Standard Library provider is available as a package in all Pulumi languages:
- JavaScript/TypeScript:
@pulumi/std - Python:
pulumi-std - Go:
github.com/pulumi/pulumi-std/sdk/v2/go/std - .NET:
Pulumi.Std - Java:
com.pulumi/std
Setup
The Standard Library provider does not require any configuration or credentials. It provides pure functions for string manipulation, mathematical operations, and other standard library functionality that work identically across all Pulumi languages.
Installation
To use the Standard Library provider with your Pulumi program, install the appropriate package for your language:
npm install @pulumi/std
pip install pulumi-std
go get github.com/pulumi/pulumi-std/sdk/v2/go/std
dotnet add package Pulumi.Std
<dependency>
<groupId>com.pulumi</groupId>
<artifactId>std</artifactId>
</dependency>
Configuration Options
The Standard Library provider does not require any configuration options or environment variables. All functions are self-contained and require no external setup.
