config items for cloud providers that are set, is ...
# general
s
config items for cloud providers that are set, is there a var we can use to reference what we entered ala
pulumi config set aws:profile my-aws-profile
? Pulumi.my-stack.yaml :
Copy code
config:
    aws:profile: my-aws-profile
    gcp:project: my-gcp-profile
or would we need to set this as a second param?
a
Do you mean accessing the config values programmatically, with `config.Require`/
config.Get
? https://www.pulumi.com/docs/concepts/config/#code
s
that's it, thank you!