gifted-barista-41153
08/08/2025, 9:49 PM@pulumi/aws
v6 to v7. I have the following in my Pulumi.dev.yaml
file
config:
aws:defaultTags:
tags:
application: "application-name"
team: "my-team"
aws:region: us-east-1
However, when I run pulumi up --refresh --run-program
, the preview shows that it would remove all of the default tags. How do I fix this?
It doesn’t seem explicitly mentioned in the upgrade docs. Will I need to use a custom provider just to use default tags?numerous-book-75463
08/11/2025, 2:34 PMgifted-barista-41153
08/11/2025, 10:21 PM~ aws:rds/instance:Instance: (update)
[id=db-ABC123]
[urn=urn:pulumi:dev::infrastructure::aws:rds/instance:Instance::infrastructure-database]
[provider: urn:pulumi:dev::infrastructure::pulumi:providers:aws::default_6_83_0::2e9536a5-249a-4459-a2b3-089589baee9f => urn:pulumi:dev::infrastructure::pulumi:providers:aws::default_7_3_1::[unknown]]
+ region: "us-east-1"
- tags : {
- application : "application-name"
- team : "my-team"
}
gifted-barista-41153
08/11/2025, 10:26 PMnumerous-book-75463
08/12/2025, 11:53 AMnumerous-book-75463
08/12/2025, 11:56 AMgifted-barista-41153
08/12/2025, 5:35 PMnumerous-book-75463
08/12/2025, 5:50 PMtags
input, but when the change is actually applied the tags
and defaultTags
are merged so the tags are not removed.gifted-barista-41153
08/12/2025, 9:51 PM