mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-24 13:50:22 -07:00
[ec2_vpc_vgw] [ec2_vpc_vpn] stabilize modules for PR 35983 (#38666)
* Stabilize ec2_vpc_vgw and ec2_vpc_vpn so tests for ec2_vpc_vpn_facts in PR 35983 can be run in CI * Add updated placebo recordings * ensure find_vgw uses the virtual gateway id if available Add AWSRetry.jittered_backoff to attach_vpn_gateway to deal with errors when attaching a new VPC directly after detaching Add integrations tests for ec2_vpc_vgw * Sort VPN Gateways by ID
This commit is contained in:
parent
923a81e9e5
commit
923f676836
297 changed files with 17113 additions and 5006 deletions
2
test/integration/targets/ec2_vpc_vgw/aliases
Normal file
2
test/integration/targets/ec2_vpc_vgw/aliases
Normal file
|
@ -0,0 +1,2 @@
|
|||
cloud/aws
|
||||
posix/ci/cloud/group4/aws
|
171
test/integration/targets/ec2_vpc_vgw/tasks/main.yml
Normal file
171
test/integration/targets/ec2_vpc_vgw/tasks/main.yml
Normal file
|
@ -0,0 +1,171 @@
|
|||
---
|
||||
- block:
|
||||
|
||||
# ============================================================
|
||||
- name: set up aws connection info
|
||||
set_fact:
|
||||
aws_connection_info: &aws_connection_info
|
||||
aws_access_key: "{{ aws_access_key }}"
|
||||
aws_secret_key: "{{ aws_secret_key }}"
|
||||
security_token: "{{ security_token }}"
|
||||
region: "{{ aws_region }}"
|
||||
no_log: yes
|
||||
|
||||
# ============================================================
|
||||
- debug: msg="Setting up test dependencies"
|
||||
|
||||
- name: create a VPC
|
||||
ec2_vpc_net:
|
||||
name: "{{ resource_prefix }}-vpc-{{ item }}"
|
||||
state: present
|
||||
cidr_block: "10.0.0.0/26"
|
||||
<<: *aws_connection_info
|
||||
tags:
|
||||
Name: "{{ resource_prefix }}-vpc-{{ item }}"
|
||||
Description: "Created by ansible-test"
|
||||
register: vpc_result
|
||||
loop: [1, 2]
|
||||
|
||||
- name: use set fact for vpc ids
|
||||
set_fact:
|
||||
vpc_id_1: '{{ vpc_result.results.0.vpc.id }}'
|
||||
vpc_id_2: '{{ vpc_result.results.1.vpc.id }}'
|
||||
|
||||
# ============================================================
|
||||
- debug: msg="Running tests"
|
||||
|
||||
- name: create vpn gateway and attach it to vpc
|
||||
ec2_vpc_vgw:
|
||||
state: present
|
||||
vpc_id: '{{ vpc_id_1 }}'
|
||||
name: "{{ resource_prefix }}-vgw"
|
||||
<<: *aws_connection_info
|
||||
register: vgw
|
||||
|
||||
- assert:
|
||||
that:
|
||||
- vgw.changed
|
||||
- "{{ vgw.vgw.vpc_id == vpc_id_1 }}"
|
||||
- '"{{ vgw.vgw.tags.Name }}" == "{{ resource_prefix }}-vgw"'
|
||||
|
||||
- name: test idempotence
|
||||
ec2_vpc_vgw:
|
||||
state: present
|
||||
vpc_id: '{{ vpc_id_1 }}'
|
||||
name: "{{ resource_prefix }}-vgw"
|
||||
<<: *aws_connection_info
|
||||
register: vgw
|
||||
|
||||
- assert:
|
||||
that:
|
||||
- not vgw.changed
|
||||
|
||||
# ============================================================
|
||||
- name: attach vpn gateway to the other VPC
|
||||
ec2_vpc_vgw:
|
||||
state: present
|
||||
vpc_id: '{{ vpc_id_2 }}'
|
||||
name: "{{ resource_prefix }}-vgw"
|
||||
<<: *aws_connection_info
|
||||
register: vgw
|
||||
|
||||
- assert:
|
||||
that:
|
||||
- vgw.changed
|
||||
- "{{ vgw.vgw.vpc_id == vpc_id_2 }}"
|
||||
|
||||
# ============================================================
|
||||
- name: add tags to the VGW
|
||||
ec2_vpc_vgw:
|
||||
state: present
|
||||
vpc_id: '{{ vpc_id_2 }}'
|
||||
name: "{{ resource_prefix }}-vgw"
|
||||
tags:
|
||||
created_by: ec2_vpc_vgw integration tests
|
||||
<<: *aws_connection_info
|
||||
register: vgw
|
||||
|
||||
- assert:
|
||||
that:
|
||||
- vgw.changed
|
||||
- vgw.vgw.tags | length == 2
|
||||
- "'created_by' in vgw.vgw.tags"
|
||||
|
||||
- name: test idempotence
|
||||
ec2_vpc_vgw:
|
||||
state: present
|
||||
vpc_id: '{{ vpc_id_2 }}'
|
||||
name: "{{ resource_prefix }}-vgw"
|
||||
tags:
|
||||
created_by: ec2_vpc_vgw integration tests
|
||||
<<: *aws_connection_info
|
||||
register: vgw
|
||||
|
||||
- assert:
|
||||
that:
|
||||
- not vgw.changed
|
||||
|
||||
# ============================================================
|
||||
- name: remove tags from the VGW
|
||||
ec2_vpc_vgw:
|
||||
state: present
|
||||
vpc_id: '{{ vpc_id_2 }}'
|
||||
name: "{{ resource_prefix }}-vgw"
|
||||
<<: *aws_connection_info
|
||||
register: vgw
|
||||
|
||||
- assert:
|
||||
that:
|
||||
- vgw.changed
|
||||
- vgw.vgw.tags | length == 1
|
||||
- '"{{ vgw.vgw.tags.Name }}" == "{{ resource_prefix }}-vgw"'
|
||||
|
||||
# ============================================================
|
||||
- name: detach vpn gateway
|
||||
ec2_vpc_vgw:
|
||||
state: present
|
||||
name: "{{ resource_prefix }}-vgw"
|
||||
<<: *aws_connection_info
|
||||
register: vgw
|
||||
|
||||
- assert:
|
||||
that:
|
||||
- vgw.changed
|
||||
- not vgw.vgw.vpc_id
|
||||
|
||||
- name: test idempotence
|
||||
ec2_vpc_vgw:
|
||||
state: present
|
||||
name: "{{ resource_prefix }}-vgw"
|
||||
<<: *aws_connection_info
|
||||
register: vgw
|
||||
|
||||
- assert:
|
||||
that:
|
||||
- not vgw.changed
|
||||
|
||||
# ============================================================
|
||||
|
||||
always:
|
||||
|
||||
- debug: msg="Removing test dependencies"
|
||||
|
||||
- name: delete vpn gateway
|
||||
ec2_vpc_vgw:
|
||||
state: absent
|
||||
vpn_gateway_id: '{{ vgw.vgw.id }}'
|
||||
<<: *aws_connection_info
|
||||
ignore_errors: yes
|
||||
|
||||
- name: delete vpc
|
||||
ec2_vpc_net:
|
||||
name: "{{ resource_prefix }}-vpc-{{ item }}"
|
||||
state: absent
|
||||
cidr_block: "10.0.0.0/26"
|
||||
<<: *aws_connection_info
|
||||
loop: [1, 2]
|
||||
register: result
|
||||
retries: 10
|
||||
delay: 5
|
||||
until: result is not failed
|
||||
ignore_errors: true
|
Loading…
Add table
Add a link
Reference in a new issue