c12s-kubespray/tests/cloud_playbooks/create-aws.yml

25 lines
632 B
YAML
Raw Normal View History

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 }}"
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
- name: Template the inventory # noqa 404
2016-02-10 10:51:39 +00:00
template:
src: ../templates/inventory-aws.j2
2016-02-10 10:51:39 +00:00
dest: "{{ inventory_path }}"