mysterious-truck-76886
10/12/2025, 6:13 PMlittle-cartoon-10569
10/12/2025, 8:06 PMPulumi.<stackname>.yaml? That's not the state file, it's the config file for that stack. It's where you put value that discriminate between stacks, which might be things like the region you're deploying to or the URL of some 3rd party service something connects to.little-cartoon-10569
10/12/2025, 8:06 PMlittle-cartoon-10569
10/12/2025, 8:07 PMmodern-zebra-45309
10/13/2025, 8:15 AMvariable.<env>.tfvars files. You can retrieve the latest configuration of a stack through the CLI via pulumi config refresh , which can be helpful when you dynamically create stack configurations in your CI workflows.orange-australia-92974
10/17/2025, 12:11 PMPulumi.<stackname>.yaml to the console?modern-zebra-45309
10/17/2025, 12:18 PMpulumi config refresh updates your Pulumi.<stackname>.yaml file based on the state. For example, if your CI workflow created a new stack pr-123 and you now want to work with it, you can run pulumi stack select pr-123 and then pulumi config refresh on your machine to get the config file.modern-zebra-45309
10/17/2025, 12:19 PMorange-australia-92974
10/17/2025, 12:34 PMmodern-zebra-45309
10/17/2025, 12:43 PMmodern-zebra-45309
10/17/2025, 12:45 PM