Pulumi CLI container, bring your own SDK.
5.9K
These images repackage releases from https://github.com/pulumi/pulumi-docker-containers:
pulumi-base: A slim image that contains the Pulumi CLI, but no SDKs.pulumi-python: A slim image that contains the Pulumi CLI along with the Python runtime and Pulumi SDK.Image source: https://github.com/polymathrobotics/oci/tree/main/pulumi
The container's default entrypoint is the pulumi executable, but you'll usually want to provide additional command-line arguments in order to perform useful work, like:
PULUMI_ACCESS_TOKEN and credentials for your cloud provider of choiceentrypoint specifying whatever setup work should be performed before invoking pulumi, such as installing Node or Python dependencies.For example, to run pulumi preview on a Python project targeting AWS:
docker container run -it --rm \
-env PULUMI_ACCESS_TOKEN \
-env AWS_ACCESS_KEY_ID \
-env AWS_SECRET_ACCESS_KEY \
-env AWS_REGION \
--workdir /app \
--mount type=bind,source="$(pwd)",target=/app \
--entrypoint bash \
docker.io/polymathrobotics/pulumi-python \
-c "pip install -r requirements.txt && pulumi preview --stack dev --non-interactive"
Find the urn for the resource of interest via pulumi stack --show-urns:
docker container run -it --rm \
--env PULUMI_ACCESS_TOKEN \
--workdir /app \
--mount type=bind,source="$(pwd)",target=/app \
--entrypoint bash \
docker.io/polymathrobotics/pulumi-python \
-c "pip install -r requirements.txt \
&& pulumi stack --show-urns"
Then use the following command to delete the urn: pulumi state delete <urn>.
To do this in bulk, you can export the stack as JSON, delete the resources, then import it back in:
# Get the current stack as json:
# pulumi stack export --file stack.json
docker container run -it --rm \
--env PULUMI_ACCESS_TOKEN \
--workdir /app \
--mount type=bind,source="$(pwd)",target=/app \
--entrypoint bash \
docker.io/polymathrobotics/pulumi-python \
-c "pip install -r requirements.txt \
&& pulumi stack export --file stack.json"
# Delete what you don't want from your stack file and then:
pulumi stack import --file stack.json
Content type
Image
Digest
sha256:252cac3f4…
Size
198.3 MB
Last updated
about 1 year ago
docker pull polymathrobotics/pulumi-base