-
Notifications
You must be signed in to change notification settings - Fork 40
/
.cloud-graphrc.example.json
41 lines (41 loc) · 1.17 KB
/
.cloud-graphrc.example.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
{
"aws": {
"regions": "us-east-1,us-east-2,us-west-2",
"resources": "alb,apiGatewayResource,apiGatewayRestApi,apiGatewayStage,appSync,asg,billing,cognitoIdentityPool,cognitoUserPool,cloudFormationStack,cloudFormationStackSet,cloudfront,cloudtrail,cloudwatch,dynamodb,ebs,ec2Instance,eip,elb,igw,kinesisFirehose,kinesisStream,kms,lambda,nacl,nat,networkInterface,route53HostedZone,route53Record,routeTable,sg,vpc,sqs,s3",
"accounts": [
{
"profile": "default",
"roleArn": "",
"externalId": ""
},
{
"profile": "master",
"roleArn": "arn:aws:iam::123456678:role/my-readonly-role",
"externalId": ""
},
{
"profile": "master",
"roleArn": "arn:aws:iam::123456678:role/my-readonly-role-with-external-id",
"externalId": "my-external-id"
}
]
},
"cloudGraph": {
"storageConfig": {
"host": "localhost",
"port": "8997",
"scheme": "http"
},
"versionLimit": 10,
"queryEngine": "playground",
"port": "5555",
"plugins": {
"policyPack": [
{
"name": "aws-cis-1.2",
"providers": ["aws"]
}
]
}
}
}