alert-laptop-81342
02/02/2023, 6:56 PM"""An AWS Python Pulumi program"""
import pulumi
import pulumi_aws as aws
stack = pulumi.get_stack()
config = pulumi.Config()
Pulumi.yaml:
name: aws
description: kms configuration
runtime:
name: python
options:
virtualenv: env
Pulumi.dev-kms.yaml:
config:
aws:region: us-east-1
When I run the code only the configuration from Pulumi.yaml goes to config. How can I "fix" this? What I am doing wrong?
Appreciate your attention.