-
Notifications
You must be signed in to change notification settings - Fork 156
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix aws.s3.Bucket tag drift detection (#3910)
Make sure that `pulumi refresh` detects changes to bucket tagging. The implementation restores aws_s3_legacy_bucket resource participation in the generic tags interceptor. Fixes #3674
- Loading branch information
Showing
5 changed files
with
195 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
name: regress-3674 | ||
runtime: yaml | ||
config: | ||
pulumi:tags: | ||
value: | ||
pulumi:template: aws-yaml | ||
outputs: | ||
# Export the name of the bucket | ||
bucketName: ${my-bucket.id} | ||
resources: | ||
# Create an AWS resource (S3 Bucket) | ||
my-bucket: | ||
type: aws:s3:BucketV2 | ||
properties: | ||
tags: | ||
MyTestTag: MyTestTag |