-
Notifications
You must be signed in to change notification settings - Fork 3
/
test.yml
49 lines (35 loc) · 758 Bytes
/
test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
---
- hosts: localhost
connection: local
tasks:
- debug:
var: aws_profile
tags: aws_profile
- debug:
var: aws_account_ids
tags: aws_account_ids
- debug:
var: vpcs
tags: vpcs
- debug:
var: vpc_ids
tags: vpc_ids
- debug:
var: subnets
tags: subnets
- debug:
var: subnet_ids
tags: subnet_ids
- debug:
var: security_groups
tags: security_groups
- debug:
var: security_group_ids
tags: security_group_ids
- debug:
var: elb_target_groups
tags: elb_target_groups
- debug:
var: elb_target_group_arns
tags: elb_target_group_arns
# vim: set ft=ansible ts=2 sts=2 sw=2 et: