145b79ef0e
* ec2_instance/ec2_instance_info : Fixup sanity test errors * Move ec2_instance integration tests to use aws_defaults * Search for the AMI instead of hardcoding an AMI * Make our VPC CIDR variable * Remove AZ assumptions - no guarantees about specific AZs being available * Make sure we terminate instances when we're done with them. * Add a 10 second pause for IAM roles to become available before using them * Wait on instance changes by default * Switch out t2 instances for t3 they're cheaper and have more CPU available * Pull t3.nano instance info a little earlier * rework vpc_name and vpc_cidr a little * Mark ec2_instance tests unsupported for now, they take too long
26 lines
987 B
YAML
26 lines
987 B
YAML
- block:
|
|
- name: create t3.nano with cpu options (fails gracefully)
|
|
ec2_instance:
|
|
state: present
|
|
name: "ansible-test-{{ resource_prefix | regex_search('([0-9]+)$') }}-ec2"
|
|
image_id: "{{ ec2_ami_image }}"
|
|
instance_type: "t3.nano"
|
|
cpu_options:
|
|
core_count: 1
|
|
threads_per_core: 1
|
|
register: ec2_instance_cpu_options_creation
|
|
ignore_errors: yes
|
|
|
|
- name: check that graceful error message is returned when creation with cpu_options and old botocore
|
|
assert:
|
|
that:
|
|
- ec2_instance_cpu_options_creation.failed
|
|
- 'ec2_instance_cpu_options_creation.msg == "cpu_options is only supported with botocore >= 1.10.16"'
|
|
|
|
always:
|
|
- name: cleanup t3.nano in case graceful failure was in fact a graceful success
|
|
ec2_instance:
|
|
state: absent
|
|
name: "ansible-test-{{ resource_prefix | regex_search('([0-9]+)$') }}-ec2"
|
|
wait: no
|
|
ignore_errors: yes
|