late-balloon-24601
01/16/2025, 5:02 PMresources:
aws-provider:
type: pulumi:providers:aws
defaultProvider: true
options:
version: 6.66.3
However, this means that our config no longer works:
config:
aws:profile: example
aws:region: eu-west-1
aws:allowedAccountIds:
- 'xxxxxxx'
What's the config namespace for this new defined provider? Neither aws
or aws-provider
seem to work. For the moment I've had to reference the vars directly which feels a bit eh:
properties:
region: ${aws:region}
profile: ${aws:profile}
allowedAccountIds: ${aws:allowedAccountIds}