forked from ansible/ansible
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ec2_instance: ebs_optimized is not sub-option of 'network' (ansible#4…
…8341) * ebs_optimized is not suboption of 'network' * Add Shaps as ec2_instance maintainer * Added workaround-backward compatible check for ebs_optimized * Added ebs_optimized test * CI fixes, dynamic select of ENA-enabled AMI
- Loading branch information
Showing
6 changed files
with
63 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
34 changes: 34 additions & 0 deletions
34
test/integration/targets/ec2_instance/playbooks/roles/ec2_instance/tasks/ebs_optimized.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
- 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: Make EBS optimized instance in the testing subnet of the test VPC | ||
ec2_instance: | ||
name: "{{ resource_prefix }}-test-ebs-optimized-instance-in-vpc" | ||
image_id: "{{ ec2_ebs_optimized_ami_image[aws_region] }}" | ||
tags: | ||
TestId: "{{ resource_prefix }}" | ||
security_groups: "{{ sg.group_id }}" | ||
vpc_subnet_id: "{{ testing_subnet_b.subnet.id }}" | ||
ebs_optimized: true | ||
instance_type: t3.nano | ||
<<: *aws_connection_info | ||
register: ebs_opt_in_vpc | ||
|
||
- name: Get ec2 instance facts | ||
ec2_instance_facts: | ||
filters: | ||
"tag:Name": "{{ resource_prefix }}-test-ebs-optimized-instance-in-vpc" | ||
"instance-state-name": "running" | ||
<<: *aws_connection_info | ||
register: ebs_opt_instance_fact | ||
|
||
- name: Assert instance is ebs_optimized | ||
assert: | ||
that: | ||
- "{{ ebs_opt_instance_fact.instances.0.ebs_optimized }}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters