
How do I convert the Output into str, to used as inputs in Pulumi ...
Apr 20, 2023 · More importantly, but probably for the same reason, neither can I use vpc_in.name or string_in as values in Pulumi resources of the second project where it expects type str and doesn't …
How to convert Pulumi Output<t> to string? - Stack Overflow
The first argument to every resource type in Pulumi is the logical name and is used for Pulumi to track the resource internally from one deployment to the next. By default, Pulumi auto-names the physical …
How to update Pulumi state to a new (and non backwards compatible ...
Sep 20, 2023 · Remove Cluster from state and re-import using new provider Export stack state with pulumi stack export and remove Cluster resource, update state with pulumi stack import (keep a …
Pulumi automation backend - Stack Overflow
Jan 16, 2023 · 0 I am a newbie in pulumi. I am having an issue. When I do pulumi login in GCP backend It appears an error: stderr: error: getting secrets manager: passphrase must be set with …
Environment variable PULUMI_CONFIG_PASSPHRASE doesn't appear …
Oct 17, 2023 · Environment variable PULUMI_CONFIG_PASSPHRASE doesn't appear to be correctly taken by pulumi Asked 2 years, 2 months ago Modified 2 years, 2 months ago Viewed 2k times
How to pass CLI arguments to my Pulumi code? - Stack Overflow
Sep 11, 2022 · For instance, can I write something like pulumi up -ec2_count=15 so that ec2_count is my custom arg I interpret in my Pulumi code? I couldn't find such capability in their docs, but it's …
Pulumi - How can I remove imported resources from my stack without ...
Feb 11, 2021 · As answered in the Pulumi Slack community channel, one can use the command: pulumi state delete <urn> This will remove the reference from your state file but not from aws. Also, if the …
How to control resource creation order in Pulumi
Jun 20, 2018 · Generally, Pulumi handles the ordering of resource creation automatically. In TypeScript this is even enforced by the language's type system via pulumi.Input<T> and pulumi.Output<T> …
Pulumi runtime can't find pulumi library - Stack Overflow
Feb 7, 2023 · Pulumi runtime can't find pulumi library Asked 2 years, 11 months ago Modified 2 years, 11 months ago Viewed 5k times
pulumi yaml file to set config in values.yaml - Stack Overflow
Nov 22, 2023 · I´m qite new at pulumi (I´m more a terraform guy). I´m working in a legacy code which deploys helm charts into kubernetes. (splunk, Datadog, etc). They are using python for this. In code I …