This message was deleted.
# python
s
This message was deleted.
a
I was able to get this kind of working with JSON with the exception of a strangely formatted yaml
Copy code
config:
  aws:regions: '["us-east-1", "eu-central-1", "ap-southeast-2", "ap-northeast-1"]'
automation.py
Copy code
stack.set_config(f"{project}:regions", auto.ConfigValue(value=json.dumps(regions)))
pulumi.py
Copy code
regions = json.loads(config.require("regions"))