bored-table-20691
02/04/2022, 2:06 AMpulumi stack tag set myorg:environment prod
, but be able to put it in Pulumi.mystack.yaml
in some way.pulumi stack ls --tag
echoing-dinner-19531
02/04/2022, 9:57 AMpulumi stack tag set
and pulumi stack tag ls
will let you set and list tags for a stack. But tags are a service concept, they aren't stored locally and won't work if using the filestate backend.
I don't think those commands are exposed directly in the automation api, but if you raise an issue they'd probably be pretty easy to add.bored-oyster-3147
02/04/2022, 2:52 PM--path
argument of pulumi config set
or pulumi config get
to manipulate config that uses your own namespacingpulumi config set --path myorg.environment prod --stack {stackName}
would create a new myorg
map in your config with a property environment
and a value of prod
bored-table-20691
02/04/2022, 3:34 PMechoing-dinner-19531
02/04/2022, 3:41 PMbored-table-20691
02/04/2022, 3:46 PM