mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
63 lines
1.9 KiB
YAML
63 lines
1.9 KiB
YAML
6 years ago
|
- name: set connection information for all tasks
|
||
|
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: true
|
||
|
|
||
|
- name: New instance and don't wait for it to complete
|
||
|
ec2_instance:
|
||
|
name: "{{ resource_prefix }}-test-no-wait"
|
||
|
image_id: "{{ ec2_ami_image[aws_region] }}"
|
||
|
vpc_subnet_id: "{{ testing_subnet_b.subnet.id }}"
|
||
|
tags:
|
||
|
TestId: "{{ resource_prefix }}"
|
||
|
wait: false
|
||
|
instance_type: t2.micro
|
||
|
<<: *aws_connection_info
|
||
|
register: in_test_vpc
|
||
|
|
||
|
- assert:
|
||
|
that:
|
||
|
- in_test_vpc is not failed
|
||
|
- in_test_vpc is changed
|
||
|
- in_test_vpc.instances is not defined
|
||
|
- in_test_vpc.instance_ids is defined
|
||
|
- in_test_vpc.instance_ids | length > 0
|
||
|
|
||
|
- name: New instance and don't wait for it to complete ( check mode )
|
||
|
ec2_instance:
|
||
|
name: "{{ resource_prefix }}-test-no-wait-checkmode"
|
||
|
image_id: "{{ ec2_ami_image[aws_region] }}"
|
||
|
vpc_subnet_id: "{{ testing_subnet_b.subnet.id }}"
|
||
|
tags:
|
||
|
TestId: "{{ resource_prefix }}"
|
||
|
wait: false
|
||
|
instance_type: t2.micro
|
||
|
<<: *aws_connection_info
|
||
|
check_mode: yes
|
||
|
|
||
|
- name: Facts for ec2 test instance
|
||
5 years ago
|
ec2_instance_info:
|
||
6 years ago
|
filters:
|
||
|
"tag:Name": "{{ resource_prefix }}-test-no-wait"
|
||
|
<<: *aws_connection_info
|
||
|
register: real_instance_fact
|
||
|
until: real_instance_fact.instances | length > 0
|
||
|
retries: 10
|
||
|
|
||
|
- name: Facts for checkmode ec2 test instance
|
||
5 years ago
|
ec2_instance_info:
|
||
6 years ago
|
filters:
|
||
|
"tag:Name": "{{ resource_prefix }}-test-no-wait-checkmode"
|
||
|
<<: *aws_connection_info
|
||
|
register: checkmode_instance_fact
|
||
|
|
||
|
- name: "Confirm whether the check mode is working normally."
|
||
|
assert:
|
||
|
that:
|
||
|
- "{{ real_instance_fact.instances | length }} > 0"
|
||
|
- "{{ checkmode_instance_fact.instances | length }} == 0"
|