-
Notifications
You must be signed in to change notification settings - Fork 403
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
ec2_eip: apply the tags during the object creation #1505
ec2_eip: apply the tags during the object creation #1505
Conversation
6fe2d35
to
cbdec5f
Compare
Apply the tags during the Elastic IP creation using `TagSpecifications`. This to avoid a potential race condition between the moment the object is created and the moment we apply the tags. See: ansible-collections#1495 (comment)
cbdec5f
to
784ea45
Compare
@goneri: Greetings! Thanks for taking the time to open this pullrequest. In order for the community to handle your pullrequest effectively, we need a bit more information. Here are the items we could not find in your description:
Please set the description of this pullrequest with this template: |
+1 to the change. However the module already moved |
Ensure ec2_instance tests filter correctly SUMMARY Multiple instances test picks up instances from other tests when run concurrently. Use tag filters to prevent this. ISSUE TYPE Bugfix Pull Request COMPONENT NAME tests/integration/targets/ec2_instance_instance_multiple/tasks/main.yml ADDITIONAL INFORMATION in the example here: https://39d585ceb0884fd58f3d-34626b4834f21056500b5be2783f089d.ssl.cf5.rackcdn.com/1500/eb91ab4ac10d4af904d629a7296502aff59d9d06/check/integration-amazon.aws-1/86d0d4c/job-output.txt the Create multiple instance (check_mode) task erroneously picks up instances from the ec2_instance_instance_minimal test target. Reviewed-by: Alina Buzachis
Depends-On: #1495
Apply the tags during the Elastic IP creation using
TagSpecifications
. This to avoida potential race condition between the moment the object is created and the moment we apply
the tags.
See: #1495 (comment)