We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
CI pipeline not successful for the ec2_vpc_nat_gateway module due due to RequestLimitExceedederrors.
RequestLimitExceeded
fatal: [testhost]: FAILED! => {"changed": false, "msg": "An error occurred (RequestLimitExceeded) when calling the DescribeNatGateways operation (reached max retries: 4): Request limit exceeded.", "resource_actions": ["ec2:DescribeNatGateways"]}
For example, creating a NAT Gateway can throw this error (see Shippable result page for further details):
- name: Create new NAT gateway with eip allocation-id ec2_vpc_nat_gateway: subnet_id: "{{ subnet_id }}" allocation_id: "{{ allocation_id }}" wait: yes register: create_ngw
I quick workaround is to include an until loop as follow:
until
- name: Create new NAT gateway with eip allocation-id ec2_vpc_nat_gateway: subnet_id: "{{ subnet_id }}" allocation_id: "{{ allocation_id }}" wait: yes register: create_ngw retries: 10 until: create_ngw is not failed
ec2_vpc_nat_gateway
2.10
The text was updated successfully, but these errors were encountered:
Files identified in the description:
plugins/modules/ec2_vpc_nat_gateway.py
If these files are inaccurate, please update the component name section of the description or use the !component bot command.
component name
!component
click here for bot help
Sorry, something went wrong.
cc @Etherdaemon @jillr @jonhadfield @linuxdynasty @s-hertel @tremble @wimnat click here for bot help
@alinabuzachis have we seen this since increasing the quotas? The zuul migration should also help since we'll be controlling test concurrency better.
@jillr I don't think we've seen the error lately.
README.md, CONTRIBUTING.md: Freenode -> Libera.Chat (ansible-collecti…
b9b52eb
…ons#379) README.md, CONTRIBUTING.md: Freenode -> Libera.Chat Reviewed-by: Abhijeet Kasurde https://github.com/Akasurde
No branches or pull requests
SUMMARY
CI pipeline not successful for the ec2_vpc_nat_gateway module due due to
RequestLimitExceeded
errors.fatal: [testhost]: FAILED! => {"changed": false, "msg": "An error occurred (RequestLimitExceeded) when calling the DescribeNatGateways operation (reached max retries: 4): Request limit exceeded.", "resource_actions": ["ec2:DescribeNatGateways"]}
For example, creating a NAT Gateway can throw this error (see Shippable result page for further details):
I quick workaround is to include an
until
loop as follow:ISSUE TYPE
COMPONENT NAME
ec2_vpc_nat_gateway
ANSIBLE VERSION
2.10
The text was updated successfully, but these errors were encountered: