da1a621bd9
Also moved environment setup and environment cleanup to separate task files Added CI group Updated c4.large instances to t3.nano, use ENA enabled AMI Updated AMIs with Amazon Linux AMI Updated us-east-1 AMI id Specify EBS size typo, volume_size Removed 'state: running', updated AMI with amz ami Also added several wait: false to speed things up Check for instance state, correctly Accept pending as valid state tags_and_vpc_settings do not wait for instance to complete wait for termination protected instance Updated IAM role name to match with policy Skip env cleanup when in CI Do not wait instance in external_resource_attach ENI remove is done in env_cleanup/CI wait some time for instance_profile instnace to be up Updated ebs_optimized_images Corrected task name Added aws_cleanup var in cloud-config-aws typo in runme default aws_cleanup to true
62 lines
1.9 KiB
YAML
62 lines
1.9 KiB
YAML
- 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
|
|
ec2_instance_info:
|
|
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
|
|
ec2_instance_info:
|
|
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"
|