Skip to content

Commit 4542313

Browse files
committed
Update parameters to align with updated amazon.aws.ec2_instance module
Increment version for hotfix Signed-off-by: Webster Mudge <[email protected]>
1 parent 325c2d3 commit 4542313

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

galaxy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
namespace: cloudera
1818
name: exe
19-
version: 1.6.0
19+
version: 1.6.1
2020
readme: README.md
2121
authors:
2222
- Webster Mudge <[email protected]>

roles/infrastructure/tasks/setup_aws_compute.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,12 +66,12 @@
6666
register: __infra_utility_vm_instance
6767
amazon.aws.ec2_instance:
6868
region: "{{ infra__region }}"
69-
group_id: "{{ infra__aws_security_group_default_id }}"
69+
security_group: "{{ infra__aws_security_group_default_id }}"
7070
key_name: "{{ infra__public_key_id }}"
7171
instance_type: "{{ infra__dynamic_inventory_vm_type_default[infra__type]['sml'] }}"
7272
image_id: "{{ __infra_aws_ami_info.image_id }}"
7373
ebs_optimized: yes
74-
instance_profile_name: "{{ infra__download_mirror_role.iam_role.role_name }}"
74+
instance_role: "{{ infra__download_mirror_role.iam_role.role_name }}"
7575
volumes:
7676
- device_name: /dev/sda1
7777
ebs:
@@ -80,7 +80,7 @@
8080
delete_on_termination: true
8181
wait: yes
8282
state: running
83-
instance_tags: "{{ infra__dynamic_inventory_tags }}"
83+
tags: "{{ infra__dynamic_inventory_tags }}"
8484
name: "{{ '-'.join([infra__namespace, infra__region, 'utility_vm' ]) }}"
8585
vpc_subnet_id: "{{ infra__aws_subnet_ids | first }}"
8686
network:

0 commit comments

Comments
 (0)