pulumiConfig
The pulumiConfig
reserved property contains values that should be exported as stack configuration for Pulumi IaC. See the Pulumi IaC integration docs for an overview.
Properties
Property | Type | Description |
---|---|---|
key | any | The value of the Pulumi config value key |
Example
values:
pulumiConfig:
aws:region: us-west-2
greeting: Hello
Evaluated result
{
"pulumiConfig": {
"aws:region": "us-west-2",
"greeting": "Hello"
}
}
Using pulumi config
Assuming a Pulumi IaC stack that is configured to use the environment above:
$ pulumi config
KEY VALUE
aws:region us-west-2
greeting Hello
Thank you for your feedback!
If you have a question about how to use Pulumi, reach out in Community Slack.
Open an issue on GitHub to report a problem or suggest an improvement.