-
Notifications
You must be signed in to change notification settings - Fork 9.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
resource_aws_efs_filesystem: create tags when resource is created #10254
Conversation
The tags for the efs filesystems were being attached after the resource was created. AWS has since updated their API so that tags can be specificed at create time. Fixes #7662
583aef1
to
a3686f0
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, thanks @mildwonkey! 🚀
Output from acceptance testing in AWS Commercial:
--- PASS: TestAccAWSEFSFileSystem_kmsConfigurationWithoutEncryption (25.39s)
--- PASS: TestAccAWSEFSFileSystem_lifecyclePolicy_removal (38.23s)
--- PASS: TestAccAWSEFSFileSystem_kmsKey (48.54s)
--- PASS: TestAccAWSEFSFileSystem_importBasic (74.63s)
--- PASS: TestAccAWSEFSFileSystem_lifecyclePolicy_update (84.50s)
--- PASS: TestAccAWSEFSFileSystem_ThroughputMode (89.04s)
--- PASS: TestAccAWSEFSFileSystem_ProvisionedThroughputInMibps (98.46s)
--- PASS: TestAccAWSEFSFileSystem_basic (99.58s)
--- PASS: TestAccAWSEFSFileSystem_pagedTags (104.21s)
--- PASS: TestAccAWSEFSFileSystem_lifecyclePolicy (105.36s)
Output from acceptance testing in AWS GovCloud (US) (failure unrelated):
--- PASS: TestAccAWSEFSFileSystem_kmsConfigurationWithoutEncryption (22.17s)
--- FAIL: TestAccAWSEFSFileSystem_basic (27.73s)
--- PASS: TestAccAWSEFSFileSystem_importBasic (45.85s)
--- PASS: TestAccAWSEFSFileSystem_lifecyclePolicy_update (52.93s)
--- PASS: TestAccAWSEFSFileSystem_kmsKey (56.27s)
--- PASS: TestAccAWSEFSFileSystem_ProvisionedThroughputInMibps (63.13s)
--- PASS: TestAccAWSEFSFileSystem_ThroughputMode (68.27s)
--- PASS: TestAccAWSEFSFileSystem_lifecyclePolicy (99.66s)
--- PASS: TestAccAWSEFSFileSystem_lifecyclePolicy_removal (112.61s)
--- PASS: TestAccAWSEFSFileSystem_pagedTags (116.25s)
This has been released in version 2.31.0 of the Terraform AWS provider. Please see the Terraform documentation on provider versioning or reach out if you need any assistance upgrading. For further feature requests or bug reports with this functionality, please create a new GitHub issue following the template for triage. Thanks! |
I'm going to lock this issue because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues. If you feel this issue should be reopened, we encourage creating a new issue linking back to this one for added context. Thanks! |
The tags for the efs filesystems were being attached after the resource
was created. AWS has since updated their API so that tags can be
specificed at create time.
Fixes #7662
Community Note
Closes #7662
Release note for CHANGELOG:
Output from acceptance testing: