In Pulumi.yaml, is it possible to use an environme...
# general
l
In Pulumi.yaml, is it possible to use an environment variable?
e
Not currently, we'll probably extend config to support them at some point: https://github.com/pulumi/pulumi/issues/11547
l
In my case, I would like to define
aws:defaultTags
as the value of my CI branch. I do this with Terraform
Also, is it possible to define the configuration in typescript instead of yaml?
e
l
If I use an explicit provider, I will have to provide it every time I create a resource?
s
yes. to make it less error prone you can disable the default provider for aws
s
But you can keep the secrets in a separate file so that you can add it to .gitignore, right?