imports
The imports
built-in property provides access to imported environments. This allows the selective use of values from imported environments, including those that are imported without participating in the merge stack.
Properties
Property | Type | Description |
---|---|---|
import | any | The imported environment to access |
Example
imports:
- app/dev: { merge: false }
values:
other: Hello, ${imports["app/dev"].name}!
Evaluated result
{
"greeting": "Hello, My App!"
}
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.