7516fe142f
* Ansible: move to Ansible 3.4.0 which uses ansible-base 2.10.10 * Docs: add a note about ansible upgrade post 2.9.x * CI: ensure ansible is removed before ansible 3.x is installed to avoid pip failures * Ansible: use newer ansible-lint * Fix ansible-lint 5.0.11 found issues * syntax issues * risky-file-permissions * var-naming * role-name * molecule tests * Mitogen: use 0.3.0rc1 which adds support for ansible 2.10+ * Pin ansible-base to 2.10.11 to get package fix on RHEL8
25 lines
693 B
YAML
25 lines
693 B
YAML
---
|
|
- hosts: localhost
|
|
become: False
|
|
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 }}"
|
|
group_id: "{{ aws.group }}"
|
|
instance_type: "{{ aws.instance_type }}"
|
|
image: "{{ aws.ami_id }}"
|
|
wait: true
|
|
count: "{{ aws.count }}"
|
|
instance_tags: "{{ aws.tags }}"
|
|
register: ec2
|
|
|
|
- name: Template the inventory
|
|
template:
|
|
src: ../templates/inventory-aws.j2 # noqa 404 CI inventory templates are not in role_path
|
|
dest: "{{ inventory_path }}"
|
|
mode: 0644
|