This message was deleted.
s
This message was deleted.
g
Pulumi's configuration system allows you to set different parameters or configuration values per stack (environment). This is similar to Terraform's tfvars configuration. https://www.pulumi.com/docs/intro/concepts/config/
🙌 2
If you wanted to populate a value from the config system or environment variable you could do something like this in your Pulumi application code (in typescript/javascript):
Copy code
tags: {
    Name: process.env["MY_VAR"] || config.get("myVar"),
}
k
Thank you @gentle-diamond-70147 that is exactly what I am looking for 🙂 Appreciate it!
👍 1