calm-horse-33012
10/17/2025, 5:38 PMworkDir
?
I get that you probably need a local file system to install the plugins etc into, but shouldn't we be able to store the stack configurations elsewhere, e.g. together with the state in a state backend?modern-spring-15520
10/17/2025, 6:24 PMmodern-spring-15520
10/17/2025, 6:27 PMcalm-horse-33012
10/17/2025, 6:28 PMcalm-horse-33012
10/17/2025, 6:29 PMcalm-horse-33012
10/17/2025, 6:30 PMcalm-horse-33012
10/17/2025, 6:30 PMcalm-horse-33012
10/17/2025, 6:30 PMmodern-spring-15520
10/17/2025, 6:31 PMmodern-spring-15520
10/17/2025, 6:31 PMmodern-spring-15520
10/17/2025, 6:31 PMmodern-zebra-45309
10/18/2025, 10:24 AMI was mostly wondering if I was missing something, or if there was a way to somehow get the stack configurations created elsewhereYou can use
pulumi stack select $MY_STACK && pulumi config refresh
to get the latest deployed configuration for your stack.
This functionality is also wrapped/exposed by the Automation API: https://github.com/pulumi/pulumi/blob/master/sdk/nodejs/automation/localWorkspace.ts#L792
If you want to share configurations without deploying them, as far as I'm aware you'll need to use a separate system (Git or some data store, I've used the AWS SSM Parameter Store or secret managers for this purpose, but anywhere you can store YAML- or JSON-like objects will do).calm-horse-33012
10/18/2025, 11:20 AM