├── .ci-mgmt.yaml ├── .config ├── mise.test.toml └── mise.toml ├── .devcontainer ├── Dockerfile └── devcontainer.json ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug.yaml │ └── epic.md ├── actions │ ├── download-prerequisites │ │ └── action.yml │ ├── download-provider │ │ └── action.yml │ ├── download-sdk │ │ └── action.yml │ ├── download-tfgen │ │ └── action.yml │ ├── esc-action │ │ ├── action.yaml │ │ └── index.js │ ├── upload-bin │ │ └── action.yml │ ├── upload-prerequisites │ │ └── action.yml │ └── upload-sdk │ │ └── action.yml ├── copilot-instructions.md └── workflows │ ├── build_provider.yml │ ├── build_sdk.yml │ ├── command-dispatch.yml │ ├── comment-on-stale-issues.yml │ ├── community-moderation.yml │ ├── copilot-setup-steps.yml │ ├── export-repo-secrets.yml │ ├── license.yml │ ├── lint.yml │ ├── main-post-build.yml │ ├── master.yml │ ├── prerelease.yml │ ├── prerequisites.yml │ ├── publish.yml │ ├── pull-request.yml │ ├── release.yml │ ├── release_command.yml │ ├── run-acceptance-tests.yml │ ├── test.yml │ ├── upgrade-bridge.yml │ ├── upgrade-provider.yml │ └── verify-release.yml ├── .gitignore ├── .golangci.yml ├── .upgrade-config.yml ├── CHANGELOG_OLD.md ├── CODE-OF-CONDUCT.md ├── CONTRIBUTING.md ├── COPYRIGHT ├── LICENSE ├── Makefile ├── README.md ├── devbox.json ├── devbox.lock ├── docs └── _index.md ├── examples ├── bytes │ ├── Pulumi.yaml │ ├── index.ts │ ├── package.json │ └── tsconfig.json ├── examples_dotnet_test.go ├── examples_go_test.go ├── examples_nodejs_test.go ├── examples_py_test.go ├── examples_test.go ├── go.mod ├── go.sum ├── internal │ └── testutil │ │ └── testutil.go ├── regress_160_test.go ├── regress_272_test.go ├── regress_279_test.go ├── regress_393 │ ├── Pulumi.yaml │ └── run.sh ├── regress_393_test.go └── simple │ ├── csharp │ ├── Program.cs │ ├── Pulumi.yaml │ └── Simple.csproj │ ├── go │ ├── Pulumi.yaml │ ├── go.mod │ ├── go.sum │ └── main.go │ ├── py │ ├── Pulumi.yaml │ ├── __main__.py │ └── requirements.txt │ └── ts │ ├── Pulumi.yaml │ ├── README.md │ ├── index.ts │ ├── package.json │ └── tsconfig.json ├── provider ├── cmd │ ├── pulumi-resource-random │ │ ├── Pulumi.yaml │ │ ├── bridge-metadata.json │ │ ├── generate.go │ │ ├── main.go │ │ └── schema.json │ └── pulumi-tfgen-random │ │ └── main.go ├── doc │ ├── password-import.md │ └── string-import.md ├── docs.go ├── go.mod ├── go.sum ├── pkg │ └── version │ │ └── version.go ├── provider_program_test.go ├── resources.go ├── shim │ ├── go.mod │ ├── go.sum │ └── shim.go ├── test-programs │ ├── index_randombytes │ │ ├── .gitignore │ │ └── Pulumi.yaml │ ├── index_randomid │ │ ├── .gitignore │ │ └── Pulumi.yaml │ ├── index_randominteger │ │ ├── .gitignore │ │ └── Pulumi.yaml │ ├── index_randompassword │ │ ├── .gitignore │ │ └── Pulumi.yaml │ ├── index_randompet │ │ ├── .gitignore │ │ └── Pulumi.yaml │ ├── index_randomshuffle │ │ ├── .gitignore │ │ └── Pulumi.yaml │ ├── index_randomstring │ │ ├── .gitignore │ │ └── Pulumi.yaml │ └── index_randomuuid │ │ ├── .gitignore │ │ └── Pulumi.yaml └── testdata │ └── recorded │ └── TestProviderUpgrade │ ├── index_randombytes │ └── 4.16.0 │ │ ├── grpc.json │ │ └── stack.json │ ├── index_randomid │ └── 4.16.0 │ │ ├── grpc.json │ │ └── stack.json │ ├── index_randominteger │ └── 4.16.0 │ │ ├── grpc.json │ │ └── stack.json │ ├── index_randompassword │ └── 4.16.0 │ │ ├── grpc.json │ │ └── stack.json │ ├── index_randompet │ └── 4.16.0 │ │ ├── grpc.json │ │ └── stack.json │ ├── index_randomshuffle │ └── 4.16.0 │ │ ├── grpc.json │ │ └── stack.json │ ├── index_randomstring │ └── 4.16.0 │ │ ├── grpc.json │ │ └── stack.json │ └── index_randomuuid │ └── 4.16.0 │ ├── grpc.json │ └── stack.json ├── scripts ├── crossbuild.mk ├── get-versions.sh └── upstream.sh └── sdk ├── go.mod ├── go.sum └── go ├── .gitattributes ├── LICENSE ├── README.md └── random ├── doc.go ├── init.go ├── internal ├── pulumiUtilities.go └── pulumiVersion.go ├── provider.go ├── pulumi-plugin.json ├── randomBytes.go ├── randomId.go ├── randomInteger.go ├── randomPassword.go ├── randomPet.go ├── randomShuffle.go ├── randomString.go └── randomUuid.go /.ci-mgmt.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/.ci-mgmt.yaml -------------------------------------------------------------------------------- /.config/mise.test.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/.config/mise.test.toml -------------------------------------------------------------------------------- /.config/mise.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/.config/mise.toml -------------------------------------------------------------------------------- /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | sdk/**/* linguist-generated=true 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/.github/ISSUE_TEMPLATE/bug.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/epic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/.github/ISSUE_TEMPLATE/epic.md -------------------------------------------------------------------------------- /.github/actions/download-prerequisites/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/.github/actions/download-prerequisites/action.yml -------------------------------------------------------------------------------- /.github/actions/download-provider/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/.github/actions/download-provider/action.yml -------------------------------------------------------------------------------- /.github/actions/download-sdk/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/.github/actions/download-sdk/action.yml -------------------------------------------------------------------------------- /.github/actions/download-tfgen/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/.github/actions/download-tfgen/action.yml -------------------------------------------------------------------------------- /.github/actions/esc-action/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/.github/actions/esc-action/action.yaml -------------------------------------------------------------------------------- /.github/actions/esc-action/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/.github/actions/esc-action/index.js -------------------------------------------------------------------------------- /.github/actions/upload-bin/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/.github/actions/upload-bin/action.yml -------------------------------------------------------------------------------- /.github/actions/upload-prerequisites/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/.github/actions/upload-prerequisites/action.yml -------------------------------------------------------------------------------- /.github/actions/upload-sdk/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/.github/actions/upload-sdk/action.yml -------------------------------------------------------------------------------- /.github/copilot-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/.github/copilot-instructions.md -------------------------------------------------------------------------------- /.github/workflows/build_provider.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/.github/workflows/build_provider.yml -------------------------------------------------------------------------------- /.github/workflows/build_sdk.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/.github/workflows/build_sdk.yml -------------------------------------------------------------------------------- /.github/workflows/command-dispatch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/.github/workflows/command-dispatch.yml -------------------------------------------------------------------------------- /.github/workflows/comment-on-stale-issues.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/.github/workflows/comment-on-stale-issues.yml -------------------------------------------------------------------------------- /.github/workflows/community-moderation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/.github/workflows/community-moderation.yml -------------------------------------------------------------------------------- /.github/workflows/copilot-setup-steps.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/.github/workflows/copilot-setup-steps.yml -------------------------------------------------------------------------------- /.github/workflows/export-repo-secrets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/.github/workflows/export-repo-secrets.yml -------------------------------------------------------------------------------- /.github/workflows/license.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/.github/workflows/license.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/main-post-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/.github/workflows/main-post-build.yml -------------------------------------------------------------------------------- /.github/workflows/master.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/.github/workflows/master.yml -------------------------------------------------------------------------------- /.github/workflows/prerelease.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/.github/workflows/prerelease.yml -------------------------------------------------------------------------------- /.github/workflows/prerequisites.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/.github/workflows/prerequisites.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/pull-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/.github/workflows/pull-request.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/release_command.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/.github/workflows/release_command.yml -------------------------------------------------------------------------------- /.github/workflows/run-acceptance-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/.github/workflows/run-acceptance-tests.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.github/workflows/upgrade-bridge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/.github/workflows/upgrade-bridge.yml -------------------------------------------------------------------------------- /.github/workflows/upgrade-provider.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/.github/workflows/upgrade-provider.yml -------------------------------------------------------------------------------- /.github/workflows/verify-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/.github/workflows/verify-release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/.gitignore -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/.golangci.yml -------------------------------------------------------------------------------- /.upgrade-config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/.upgrade-config.yml -------------------------------------------------------------------------------- /CHANGELOG_OLD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/CHANGELOG_OLD.md -------------------------------------------------------------------------------- /CODE-OF-CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/CODE-OF-CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/COPYRIGHT -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/README.md -------------------------------------------------------------------------------- /devbox.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/devbox.json -------------------------------------------------------------------------------- /devbox.lock: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /docs/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/docs/_index.md -------------------------------------------------------------------------------- /examples/bytes/Pulumi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/examples/bytes/Pulumi.yaml -------------------------------------------------------------------------------- /examples/bytes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/examples/bytes/index.ts -------------------------------------------------------------------------------- /examples/bytes/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/examples/bytes/package.json -------------------------------------------------------------------------------- /examples/bytes/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/examples/bytes/tsconfig.json -------------------------------------------------------------------------------- /examples/examples_dotnet_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/examples/examples_dotnet_test.go -------------------------------------------------------------------------------- /examples/examples_go_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/examples/examples_go_test.go -------------------------------------------------------------------------------- /examples/examples_nodejs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/examples/examples_nodejs_test.go -------------------------------------------------------------------------------- /examples/examples_py_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/examples/examples_py_test.go -------------------------------------------------------------------------------- /examples/examples_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/examples/examples_test.go -------------------------------------------------------------------------------- /examples/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/examples/go.mod -------------------------------------------------------------------------------- /examples/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/examples/go.sum -------------------------------------------------------------------------------- /examples/internal/testutil/testutil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/examples/internal/testutil/testutil.go -------------------------------------------------------------------------------- /examples/regress_160_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/examples/regress_160_test.go -------------------------------------------------------------------------------- /examples/regress_272_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/examples/regress_272_test.go -------------------------------------------------------------------------------- /examples/regress_279_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/examples/regress_279_test.go -------------------------------------------------------------------------------- /examples/regress_393/Pulumi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/examples/regress_393/Pulumi.yaml -------------------------------------------------------------------------------- /examples/regress_393/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/examples/regress_393/run.sh -------------------------------------------------------------------------------- /examples/regress_393_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/examples/regress_393_test.go -------------------------------------------------------------------------------- /examples/simple/csharp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/examples/simple/csharp/Program.cs -------------------------------------------------------------------------------- /examples/simple/csharp/Pulumi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/examples/simple/csharp/Pulumi.yaml -------------------------------------------------------------------------------- /examples/simple/csharp/Simple.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/examples/simple/csharp/Simple.csproj -------------------------------------------------------------------------------- /examples/simple/go/Pulumi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/examples/simple/go/Pulumi.yaml -------------------------------------------------------------------------------- /examples/simple/go/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/examples/simple/go/go.mod -------------------------------------------------------------------------------- /examples/simple/go/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/examples/simple/go/go.sum -------------------------------------------------------------------------------- /examples/simple/go/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/examples/simple/go/main.go -------------------------------------------------------------------------------- /examples/simple/py/Pulumi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/examples/simple/py/Pulumi.yaml -------------------------------------------------------------------------------- /examples/simple/py/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/examples/simple/py/__main__.py -------------------------------------------------------------------------------- /examples/simple/py/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/examples/simple/py/requirements.txt -------------------------------------------------------------------------------- /examples/simple/ts/Pulumi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/examples/simple/ts/Pulumi.yaml -------------------------------------------------------------------------------- /examples/simple/ts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/examples/simple/ts/README.md -------------------------------------------------------------------------------- /examples/simple/ts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/examples/simple/ts/index.ts -------------------------------------------------------------------------------- /examples/simple/ts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/examples/simple/ts/package.json -------------------------------------------------------------------------------- /examples/simple/ts/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/examples/simple/ts/tsconfig.json -------------------------------------------------------------------------------- /provider/cmd/pulumi-resource-random/Pulumi.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /provider/cmd/pulumi-resource-random/bridge-metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/provider/cmd/pulumi-resource-random/bridge-metadata.json -------------------------------------------------------------------------------- /provider/cmd/pulumi-resource-random/generate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/provider/cmd/pulumi-resource-random/generate.go -------------------------------------------------------------------------------- /provider/cmd/pulumi-resource-random/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/provider/cmd/pulumi-resource-random/main.go -------------------------------------------------------------------------------- /provider/cmd/pulumi-resource-random/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/provider/cmd/pulumi-resource-random/schema.json -------------------------------------------------------------------------------- /provider/cmd/pulumi-tfgen-random/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/provider/cmd/pulumi-tfgen-random/main.go -------------------------------------------------------------------------------- /provider/doc/password-import.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/provider/doc/password-import.md -------------------------------------------------------------------------------- /provider/doc/string-import.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/provider/doc/string-import.md -------------------------------------------------------------------------------- /provider/docs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/provider/docs.go -------------------------------------------------------------------------------- /provider/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/provider/go.mod -------------------------------------------------------------------------------- /provider/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/provider/go.sum -------------------------------------------------------------------------------- /provider/pkg/version/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/provider/pkg/version/version.go -------------------------------------------------------------------------------- /provider/provider_program_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/provider/provider_program_test.go -------------------------------------------------------------------------------- /provider/resources.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/provider/resources.go -------------------------------------------------------------------------------- /provider/shim/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/provider/shim/go.mod -------------------------------------------------------------------------------- /provider/shim/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/provider/shim/go.sum -------------------------------------------------------------------------------- /provider/shim/shim.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/provider/shim/shim.go -------------------------------------------------------------------------------- /provider/test-programs/index_randombytes/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | /Pulumi.*.yaml 3 | -------------------------------------------------------------------------------- /provider/test-programs/index_randombytes/Pulumi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/provider/test-programs/index_randombytes/Pulumi.yaml -------------------------------------------------------------------------------- /provider/test-programs/index_randomid/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | /Pulumi.*.yaml 3 | -------------------------------------------------------------------------------- /provider/test-programs/index_randomid/Pulumi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/provider/test-programs/index_randomid/Pulumi.yaml -------------------------------------------------------------------------------- /provider/test-programs/index_randominteger/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | /Pulumi.*.yaml 3 | -------------------------------------------------------------------------------- /provider/test-programs/index_randominteger/Pulumi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/provider/test-programs/index_randominteger/Pulumi.yaml -------------------------------------------------------------------------------- /provider/test-programs/index_randompassword/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | /Pulumi.*.yaml 3 | -------------------------------------------------------------------------------- /provider/test-programs/index_randompassword/Pulumi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/provider/test-programs/index_randompassword/Pulumi.yaml -------------------------------------------------------------------------------- /provider/test-programs/index_randompet/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | /Pulumi.*.yaml 3 | -------------------------------------------------------------------------------- /provider/test-programs/index_randompet/Pulumi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/provider/test-programs/index_randompet/Pulumi.yaml -------------------------------------------------------------------------------- /provider/test-programs/index_randomshuffle/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | /Pulumi.*.yaml 3 | -------------------------------------------------------------------------------- /provider/test-programs/index_randomshuffle/Pulumi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/provider/test-programs/index_randomshuffle/Pulumi.yaml -------------------------------------------------------------------------------- /provider/test-programs/index_randomstring/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | /Pulumi.*.yaml 3 | -------------------------------------------------------------------------------- /provider/test-programs/index_randomstring/Pulumi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/provider/test-programs/index_randomstring/Pulumi.yaml -------------------------------------------------------------------------------- /provider/test-programs/index_randomuuid/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | /Pulumi.*.yaml 3 | -------------------------------------------------------------------------------- /provider/test-programs/index_randomuuid/Pulumi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/provider/test-programs/index_randomuuid/Pulumi.yaml -------------------------------------------------------------------------------- /provider/testdata/recorded/TestProviderUpgrade/index_randombytes/4.16.0/grpc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/provider/testdata/recorded/TestProviderUpgrade/index_randombytes/4.16.0/grpc.json -------------------------------------------------------------------------------- /provider/testdata/recorded/TestProviderUpgrade/index_randombytes/4.16.0/stack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/provider/testdata/recorded/TestProviderUpgrade/index_randombytes/4.16.0/stack.json -------------------------------------------------------------------------------- /provider/testdata/recorded/TestProviderUpgrade/index_randomid/4.16.0/grpc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/provider/testdata/recorded/TestProviderUpgrade/index_randomid/4.16.0/grpc.json -------------------------------------------------------------------------------- /provider/testdata/recorded/TestProviderUpgrade/index_randomid/4.16.0/stack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/provider/testdata/recorded/TestProviderUpgrade/index_randomid/4.16.0/stack.json -------------------------------------------------------------------------------- /provider/testdata/recorded/TestProviderUpgrade/index_randominteger/4.16.0/grpc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/provider/testdata/recorded/TestProviderUpgrade/index_randominteger/4.16.0/grpc.json -------------------------------------------------------------------------------- /provider/testdata/recorded/TestProviderUpgrade/index_randominteger/4.16.0/stack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/provider/testdata/recorded/TestProviderUpgrade/index_randominteger/4.16.0/stack.json -------------------------------------------------------------------------------- /provider/testdata/recorded/TestProviderUpgrade/index_randompassword/4.16.0/grpc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/provider/testdata/recorded/TestProviderUpgrade/index_randompassword/4.16.0/grpc.json -------------------------------------------------------------------------------- /provider/testdata/recorded/TestProviderUpgrade/index_randompassword/4.16.0/stack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/provider/testdata/recorded/TestProviderUpgrade/index_randompassword/4.16.0/stack.json -------------------------------------------------------------------------------- /provider/testdata/recorded/TestProviderUpgrade/index_randompet/4.16.0/grpc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/provider/testdata/recorded/TestProviderUpgrade/index_randompet/4.16.0/grpc.json -------------------------------------------------------------------------------- /provider/testdata/recorded/TestProviderUpgrade/index_randompet/4.16.0/stack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/provider/testdata/recorded/TestProviderUpgrade/index_randompet/4.16.0/stack.json -------------------------------------------------------------------------------- /provider/testdata/recorded/TestProviderUpgrade/index_randomshuffle/4.16.0/grpc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/provider/testdata/recorded/TestProviderUpgrade/index_randomshuffle/4.16.0/grpc.json -------------------------------------------------------------------------------- /provider/testdata/recorded/TestProviderUpgrade/index_randomshuffle/4.16.0/stack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/provider/testdata/recorded/TestProviderUpgrade/index_randomshuffle/4.16.0/stack.json -------------------------------------------------------------------------------- /provider/testdata/recorded/TestProviderUpgrade/index_randomstring/4.16.0/grpc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/provider/testdata/recorded/TestProviderUpgrade/index_randomstring/4.16.0/grpc.json -------------------------------------------------------------------------------- /provider/testdata/recorded/TestProviderUpgrade/index_randomstring/4.16.0/stack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/provider/testdata/recorded/TestProviderUpgrade/index_randomstring/4.16.0/stack.json -------------------------------------------------------------------------------- /provider/testdata/recorded/TestProviderUpgrade/index_randomuuid/4.16.0/grpc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/provider/testdata/recorded/TestProviderUpgrade/index_randomuuid/4.16.0/grpc.json -------------------------------------------------------------------------------- /provider/testdata/recorded/TestProviderUpgrade/index_randomuuid/4.16.0/stack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/provider/testdata/recorded/TestProviderUpgrade/index_randomuuid/4.16.0/stack.json -------------------------------------------------------------------------------- /scripts/crossbuild.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/scripts/crossbuild.mk -------------------------------------------------------------------------------- /scripts/get-versions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/scripts/get-versions.sh -------------------------------------------------------------------------------- /scripts/upstream.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/scripts/upstream.sh -------------------------------------------------------------------------------- /sdk/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/sdk/go.mod -------------------------------------------------------------------------------- /sdk/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/sdk/go.sum -------------------------------------------------------------------------------- /sdk/go/.gitattributes: -------------------------------------------------------------------------------- 1 | * linguist-generated 2 | -------------------------------------------------------------------------------- /sdk/go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/sdk/go/LICENSE -------------------------------------------------------------------------------- /sdk/go/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/sdk/go/README.md -------------------------------------------------------------------------------- /sdk/go/random/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/sdk/go/random/doc.go -------------------------------------------------------------------------------- /sdk/go/random/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/sdk/go/random/init.go -------------------------------------------------------------------------------- /sdk/go/random/internal/pulumiUtilities.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/sdk/go/random/internal/pulumiUtilities.go -------------------------------------------------------------------------------- /sdk/go/random/internal/pulumiVersion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/sdk/go/random/internal/pulumiVersion.go -------------------------------------------------------------------------------- /sdk/go/random/provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/sdk/go/random/provider.go -------------------------------------------------------------------------------- /sdk/go/random/pulumi-plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/sdk/go/random/pulumi-plugin.json -------------------------------------------------------------------------------- /sdk/go/random/randomBytes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/sdk/go/random/randomBytes.go -------------------------------------------------------------------------------- /sdk/go/random/randomId.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/sdk/go/random/randomId.go -------------------------------------------------------------------------------- /sdk/go/random/randomInteger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/sdk/go/random/randomInteger.go -------------------------------------------------------------------------------- /sdk/go/random/randomPassword.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/sdk/go/random/randomPassword.go -------------------------------------------------------------------------------- /sdk/go/random/randomPet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/sdk/go/random/randomPet.go -------------------------------------------------------------------------------- /sdk/go/random/randomShuffle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/sdk/go/random/randomShuffle.go -------------------------------------------------------------------------------- /sdk/go/random/randomString.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/sdk/go/random/randomString.go -------------------------------------------------------------------------------- /sdk/go/random/randomUuid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulumi/pulumi-random/HEAD/sdk/go/random/randomUuid.go --------------------------------------------------------------------------------