2016-02-10 10:51:39 +00:00
|
|
|
---
|
|
|
|
- hosts: localhost
|
2019-04-18 08:42:10 +00:00
|
|
|
become: False
|
2016-02-10 10:51:39 +00:00
|
|
|
gather_facts: False
|
|
|
|
|
|
|
|
tasks:
|
|
|
|
- name: Provision a set of instances
|
|
|
|
ec2:
|
|
|
|
key_name: "{{ aws.key_name }}"
|
|
|
|
aws_access_key: "{{ aws.access_key }}"
|
|
|
|
aws_secret_key: "{{ aws.secret_key }}"
|
|
|
|
region: "{{ aws.region }}"
|
2019-05-02 21:24:21 +00:00
|
|
|
group_id: "{{ aws.group }}"
|
|
|
|
instance_type: "{{ aws.instance_type }}"
|
2016-02-10 10:51:39 +00:00
|
|
|
image: "{{ aws.ami_id }}"
|
|
|
|
wait: true
|
|
|
|
count: "{{ aws.count }}"
|
|
|
|
instance_tags: "{{ aws.tags }}"
|
|
|
|
register: ec2
|
|
|
|
|
2020-07-28 08:21:08 +00:00
|
|
|
- name: Template the inventory
|
2016-02-10 10:51:39 +00:00
|
|
|
template:
|
2020-07-28 08:21:08 +00:00
|
|
|
src: ../templates/inventory-aws.j2 # noqa 404 CI inventory templates are not in role_path
|
2016-02-10 10:51:39 +00:00
|
|
|
dest: "{{ inventory_path }}"
|
2021-07-12 07:00:47 +00:00
|
|
|
mode: 0644
|