-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathconfig-sample.yaml
More file actions
31 lines (31 loc) · 870 Bytes
/
config-sample.yaml
File metadata and controls
31 lines (31 loc) · 870 Bytes
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
inventories:
- name: your-inventory-name
aws:
profile: your-aws-profile
region:
- us-east-1
excel:
transpose: true
sheets:
- name: EC2 # sheet name on Excel
service: ec2 # the boto3 client of an AWS service
function: describe_instances # the client method of the service defined above
result_key: Reservations # [optional]: The first key of the response dict
- name: EBS
service: ec2
function: describe_volumes
result_key: Volumes
- name: your-second-inventory
aws:
profile: your-second-aws-profile
region:
- us-east-1
sheets:
- name: EC2
service: ec2
function: describe_instances
result_key: Reservations
- name: EBS
service: ec2
function: describe_volumes
result_key: Volumes