mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1.2 KiB
YAML
36 lines
1.2 KiB
YAML
11 years ago
|
- hosts: amazon
|
||
11 years ago
|
gather_facts: true
|
||
|
roles:
|
||
|
- { role: test_ec2_key, tags: test_ec2_key }
|
||
|
- { role: test_ec2_group, tags: test_ec2_group }
|
||
|
#- { role: test_ec2_vpc, tags: test_ec2_vpc }
|
||
|
#- { role: test_ec2_vol, tags: test_ec2_vol }
|
||
|
#- { role: test_ec2_tag, tags: test_ec2_tag }
|
||
|
#- { role: test_ec2_facts, tags: test_ec2_facts }
|
||
11 years ago
|
- { role: test_ec2_elb_lb, tags: test_ec2_elb_lb }
|
||
10 years ago
|
- { role: test_ec2_eip, tags: test_ec2_eip }
|
||
11 years ago
|
#- { role: test_ec2_ami, tags: test_ec2_ami }
|
||
|
#- { role: test_ec2, tags: test_ec2 }
|
||
11 years ago
|
- { role: test_ec2_asg, tags: test_ec2_asg }
|
||
8 years ago
|
- { role: test_ec2_vpc_nat_gateway, tags: test_ec2_vpc_nat_gateway }
|
||
8 years ago
|
- { role: test_ecs_ecr, tags: test_ecs_ecr }
|
||
11 years ago
|
|
||
|
# complex test for ec2_elb, split up over multiple plays
|
||
|
# since there is a setup component as well as the test which
|
||
|
# runs on a different set of hosts (ec2 instances)
|
||
|
|
||
|
- hosts: amazon
|
||
|
roles:
|
||
|
- { role: ec2_provision_instances, tags: test_ec2_elb, count: 5 }
|
||
|
|
||
|
- hosts: ec2
|
||
|
gather_facts: no
|
||
|
remote_user: ec2-user
|
||
8 years ago
|
become: true
|
||
11 years ago
|
roles:
|
||
|
- { role: ec2_elb_instance_setup, tags: test_ec2_elb }
|
||
|
|
||
|
- hosts: amazon
|
||
|
roles:
|
||
|
- { role: test_ec2_elb, tags: test_ec2_elb }
|