This release is a pre-release and may not be stable for production use.
Random Provider
The random provider allows the safe use of randomness in a Pulumi program. This allows you to generate resource properties, such as names, that contain randomness in a way that works with Pulumi’s goal state oriented approach. Using randomness as usual would not work well with Pulumi, because by definition, each time the program is evaluated, a new random state would be produced, necessitating re-convergence on the goal state. This provider understands how to work with the Pulumi resource lifecycle to accomplish randomness safely and in a way that works as desired.
Example
For example, to generate a random string, simply allocate a resource:
const random = require("@pulumi/random");
const password = new random.RandomString("password", {
length: 16,
special: true,
overrideSpecial: "/@\" ",
});
From there we can use its result output property, of type Output<string>, to pass to another resource.
Installing
This package is available in many languages in the standard packaging formats.
Node.js (Java/TypeScript)
To use from JavaScript or TypeScript in Node.js, install using either npm:
$ npm install @pulumi/random
or yarn:
$ yarn add @pulumi/random
Python
To use from Python, install using pip:
$ pip install pulumi_random
Go
To use from Go, use go get to grab the latest version of the library
$ go get github.com/pulumi/pulumi-random/sdk/go/...
Reference
For detailed reference documentation, please visit the API docs.
Release files for pulumi-random 0.4.1.dev1551743987
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| pulumi_random-0.4.1.dev1551743987.tar.gz | 6.6 kB | Details |
Release files / pulumi_random-0.4.1.dev1551743987.tar.gz
| Download URL | pulumi_random-0.4.1.dev1551743987.tar.gz |
|---|---|
| Size | 6.6 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
03b9cf187fd98b71b43c8311eb812dcc8afbe5ae6713397aff05ad25f991174f
|
|
BLAKE2b-256 checksum How to use checksums |
e1f349614786d21f084c83c2672ab8e1fc7c48b9508e1e09a3eb61c70f2ec669
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/1.9.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/38.2.4 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/2.7.6
|