removed tests
This commit is contained in:
@@ -1,33 +0,0 @@
|
||||
---
|
||||
- name: create default security group
|
||||
ec2_group:
|
||||
name: "{{ security_group }}"
|
||||
region: "{{ region }}"
|
||||
description: "{{ project_description }}"
|
||||
rules:
|
||||
# ssh
|
||||
- proto: tcp
|
||||
from_port: 22
|
||||
to_port: 22
|
||||
cidr_ip: "{{ ip_access_range }}"
|
||||
rules_egress:
|
||||
- proto: all
|
||||
cidr_ip: "{{ ip_access_range }}"
|
||||
|
||||
|
||||
- name: start ec2 instances
|
||||
ec2:
|
||||
group: "{{ security_group }}"
|
||||
instance_type: "{{ instance_type }}"
|
||||
image: "{{ image }}"
|
||||
wait: true
|
||||
region: "{{ region }}"
|
||||
key_name: "{{ keypair }}"
|
||||
instance_tags:
|
||||
Name: test_runner
|
||||
count_tag:
|
||||
Name: test_runner
|
||||
exact_count: "{{ total_no_instances }}"
|
||||
# volumes:
|
||||
# - device_name: /dev/xvda
|
||||
# volume_size: "{{ volume_size_gb }}"
|
@@ -1,8 +0,0 @@
|
||||
---
|
||||
- name: Terminate ec2 instances
|
||||
local_action: ec2
|
||||
state=absent
|
||||
instance_ids={{ ec2_id }}
|
||||
region={{ region }}
|
||||
wait=true
|
||||
|
Reference in New Issue
Block a user