1. Docs
  2. Pulumi ESC
  3. Environment Definition Reference
  4. Reserved Properties
  5. pulumiConfig

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

    PropertyTypeDescription
    keyanyThe 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