Skip to content

Commit 44e7659

Browse files
author
Marco Franceschi
committed
feat: linked new service
1 parent 5ea6932 commit 44e7659

File tree

6 files changed

+7
-0
lines changed

6 files changed

+7
-0
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,7 @@ CloudGraph AWS Provider will ask you what regions you would like to crawl and wi
102102
| configurationRule | |
103103
| customerGateway | vpnConnection |
104104
| dynamodb | appSync, iamRole, kms |
105+
| docdbCluster | |
105106
| dmsReplicationInstance | securityGroup, subnet, vpc, kms |
106107
| ebs | asg, ec2, emrInstance, ebsSnapshot |
107108
| ebsSnapshot | ebs, kms |

src/enums/schemasMap.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ export default {
3434
[services.customerGateway]: 'awsCustomerGateway',
3535
[services.dmsReplicationInstance]: 'awsDmsReplicationInstance',
3636
[services.dynamodb]: 'awsDynamoDbTable',
37+
[services.docdbCluster]: 'awsDocdbCluster',
3738
[services.ebs]: 'awsEbs',
3839
[services.ebsSnapshot]: 'awsEbsSnapshot',
3940
[services.ec2Instance]: 'awsEc2',

src/enums/serviceMap.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ import ConfigurationRule from '../services/configurationRule'
3232
import CustomerGateway from '../services/customerGateway'
3333
import DmsReplicationInstance from '../services/dmsReplicationInstance'
3434
import DynamoDB from '../services/dynamodb'
35+
import DocDBCluster from '../services/docdbCluster'
3536
import EBS from '../services/ebs'
3637
import EBSSnapshot from '../services/ebsSnapshot'
3738
import EC2 from '../services/ec2'
@@ -194,6 +195,7 @@ export default {
194195
[services.emrStep]: EmrStep,
195196
[services.dmsReplicationInstance]: DmsReplicationInstance,
196197
[services.dynamodb]: DynamoDB,
198+
[services.docdbCluster]: DocDBCluster,
197199
[services.igw]: AwsInternetGateway,
198200
[services.iot]: IotThingAttribute,
199201
[services.kinesisFirehose]: AwsKinesisFirehose,

src/enums/services.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ export default {
3535
customerGateway: 'customerGateway',
3636
dmsReplicationInstance: 'dmsReplicationInstance',
3737
dynamodb: 'dynamodb',
38+
docdbCluster: 'docdbCluster',
3839
ebs: 'ebs',
3940
ebsSnapshot: 'ebsSnapshot',
4041
ec2Instance: 'ec2Instance',

src/properties/logger.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -305,6 +305,7 @@ export default {
305305
lookingforRdsClusters: 'Looking for RDS Clusters...',
306306
creatingRdsInstance: (num: number): string => `Creating RDS Instance #${num}`,
307307
fetchedRdsClusters: (num: number): string => `Fetched ${num} RDS Clusters`,
308+
fetchedDocdbClusters: (num: number): string => `Fetched ${num} DocDB Clusters`,
308309
fetchedRdsGlobalClusters: (num: number): string =>
309310
`Fetched ${num} RDS Global Clusters`,
310311
fetchedRdsInstances: (num: number): string =>

src/services/account/schema.graphql

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ type awsAccount implements awsOptionalService @key(fields: "id") {
3333
customerGateway: [awsCustomerGateway]
3434
dmsReplicationInstances: [awsDmsReplicationInstance]
3535
dynamodb: [awsDynamoDbTable]
36+
docdbCluster: [awsDocdbCluster]
3637
ebs: [awsEbs]
3738
ec2Instances: [awsEc2]
3839
ecr: [awsEcr]

0 commit comments

Comments
 (0)