-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgoss-config.json
63 lines (63 loc) · 1.5 KB
/
goss-config.json
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"OutputDirectory": "$HOME/gossamer",
"OutputFile": "goss-generated-aliases.sh",
"RoleAliases": {
"r1": [
"path/role1"
],
"r2": [
"path/role2"
],
"r3": [
"path/role1",
"path/role2"
]
},
"GossamerPath": "/usr/local/bin/gossamer",
"AWSCredentialsPath": "$HOME/.aws/credentials",
"AWSCLIPath": "/usr/local/bin/aws",
"BaseProfile": "default",
"Accounts": [
{
"Id": "123456789012",
"Name": "acct-a",
"Alias": "a",
"Region": "us-east-1",
"Role": "path/role1"
},
{
"Id": "987654321098",
"Name": "acct-b",
"Alias": "b",
"Region": "us-east-1",
"Role": "path/role1"
},
{
"Id": "123456789012",
"Name": "acct-c",
"Alias": "c",
"Region": "us-east-1",
"Role": "path/role2"
},
{
"Id": "111111111111",
"Name": "acct-d",
"Alias": "d",
"Region": "us-east-1",
"Role": "path/role2"
},
{
"Id": "222222222222",
"Name": "acct-e",
"Alias": "e",
"Region": "us-east-1",
"Role": "path/role3"
},
{
"Id": "333333333333",
"Name": "acct-f",
"Region": "us-east-1",
"Role": "path/role4"
}
]
}