Skip to content

Commit c37dba4

Browse files
committed
Merge branch 'alpha' into feature/CG-1058
2 parents f0ce573 + e21d1af commit c37dba4

40 files changed

Lines changed: 848 additions & 253 deletions

File tree

CHANGELOG.md

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,52 @@
1+
# [0.79.0-alpha.19](https://github.com/cloudgraphdev/cloudgraph-provider-aws/compare/0.79.0-alpha.18...0.79.0-alpha.19) (2022-04-13)
2+
3+
4+
### Bug Fixes
5+
6+
* Added missing connections to managedAirflow ([dbb9405](https://github.com/cloudgraphdev/cloudgraph-provider-aws/commit/dbb94058dd22c0b538b4f9491e6874031747480f))
7+
8+
# [0.79.0-alpha.18](https://github.com/cloudgraphdev/cloudgraph-provider-aws/compare/0.79.0-alpha.17...0.79.0-alpha.18) (2022-04-13)
9+
10+
11+
### Bug Fixes
12+
13+
* **elasticBeanstalkEnv:** add connections with alb, elb, ec2 and sqs services ([fe21ecd](https://github.com/cloudgraphdev/cloudgraph-provider-aws/commit/fe21ecd924695395dde77a8704bf0e7edcb26c36))
14+
15+
# [0.79.0-alpha.17](https://github.com/cloudgraphdev/cloudgraph-provider-aws/compare/0.79.0-alpha.16...0.79.0-alpha.17) (2022-04-13)
16+
17+
18+
### Bug Fixes
19+
20+
* Added missing connections to RDS DB Instance ([206bd29](https://github.com/cloudgraphdev/cloudgraph-provider-aws/commit/206bd29fd9189d10ab628c07f206e5e6a4725bf6))
21+
22+
23+
### Features
24+
25+
* **rds:** add kms connection cluster/dbInstance ([f501a4e](https://github.com/cloudgraphdev/cloudgraph-provider-aws/commit/f501a4e079503d10841f1af32d3a12f13d277aa2))
26+
* **rdsCluster:** add route53HostedZone connection ([6480e7f](https://github.com/cloudgraphdev/cloudgraph-provider-aws/commit/6480e7f16c404ebb2c7f2f458aa95ae2db93f0dc))
27+
* **rdsCluster:** add subnet connection, add missing properties ([7706a02](https://github.com/cloudgraphdev/cloudgraph-provider-aws/commit/7706a0243384d949f1c4adaf7ec0fa6dd1d4cd57))
28+
29+
# [0.79.0-alpha.16](https://github.com/cloudgraphdev/cloudgraph-provider-aws/compare/0.79.0-alpha.15...0.79.0-alpha.16) (2022-04-13)
30+
31+
32+
### Bug Fixes
33+
34+
* iamInstanceProfile never returning when there's a permission's error ([63e6d4a](https://github.com/cloudgraphdev/cloudgraph-provider-aws/commit/63e6d4a3b8622c5d14a082cc3d9f2eef338c670c))
35+
36+
# [0.79.0-alpha.15](https://github.com/cloudgraphdev/cloudgraph-provider-aws/compare/0.79.0-alpha.14...0.79.0-alpha.15) (2022-04-13)
37+
38+
39+
### Bug Fixes
40+
41+
* add connection between networkInterface and securityGroup services ([8efe2aa](https://github.com/cloudgraphdev/cloudgraph-provider-aws/commit/8efe2aa8e15536df124a666b05d5e08eec8e2f87))
42+
43+
# [0.79.0-alpha.14](https://github.com/cloudgraphdev/cloudgraph-provider-aws/compare/0.79.0-alpha.13...0.79.0-alpha.14) (2022-04-13)
44+
45+
46+
### Bug Fixes
47+
48+
* **elasticBeanstalkApp:** add connection to iamRole, fixes to iamRole ([d5af1af](https://github.com/cloudgraphdev/cloudgraph-provider-aws/commit/d5af1af67656058e42874dd0260b7d1bf63310f5))
49+
150
# [0.79.0-alpha.13](https://github.com/cloudgraphdev/cloudgraph-provider-aws/compare/0.79.0-alpha.12...0.79.0-alpha.13) (2022-04-12)
251

352

README.md

Lines changed: 94 additions & 94 deletions
Large diffs are not rendered by default.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@cloudgraph/cg-provider-aws",
3-
"version": "0.79.0-alpha.13",
3+
"version": "0.79.0-alpha.19",
44
"description": "cloud-graph provider plugin for AWS used to fetch AWS cloud data.",
55
"publishConfig": {
66
"registry": "https://registry.npmjs.org/",

src/enums/serviceAliases.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ export default {
4747
[services.iamUser]: 'iamUsers',
4848
[services.kinesisStream]: 'kinesisStreams',
4949
[services.lambda]: 'lambdaFunctions',
50+
[services.managedAirflow]: 'managedAirflows',
5051
[services.nat]: 'natGateway',
5152
[services.networkInterface]: 'networkInterfaces',
5253
[services.organization]: 'organizations',

src/services/alb/schema.graphql

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ type awsAlb implements awsBaseService @key(fields: "arn") {
2121
route53Record: [awsRoute53Record] @hasInverse(field: alb) #change to plural
2222
listeners: [awsAlbListener]
2323
subnet: [awsSubnet] @hasInverse(field: alb) #change to plural
24+
elasticBeanstalkEnvs: [awsElasticBeanstalkEnv] @hasInverse(field: albs)
2425
}
2526

2627
type awsAlbListener

src/services/asg/schema.graphql

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,7 @@ type awsAsg implements awsBaseService @key(fields: "arn") {
131131
tags: [awsRawTag]
132132
launchConfiguration: awsLaunchConfiguration
133133
ec2Instance: [awsEc2] @hasInverse(field: asg) #change to plural
134+
elasticBeanstalkEnvs: [awsElasticBeanstalkEnv] @hasInverse(field: asgs)
134135
securityGroups: [awsSecurityGroup] @hasInverse(field: asg)
135136
ebs: [awsEbs] @hasInverse(field: asg)
136137
subnet: [awsSubnet] @hasInverse(field: asg) #change to plural

src/services/cloudwatchLogs/schema.graphql

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ type awsCloudwatchLog @key(fields: "arn") {
1414
cloudwatch: [awsCloudwatch] @hasInverse(field: cloudwatchLog)
1515
cloudtrail: [awsCloudtrail] @hasInverse(field: cloudwatchLog)
1616
ecsCluster: [awsEcsCluster] @hasInverse(field: cloudwatchLog)
17+
rdsDbInstance: [awsRdsDbInstance] @hasInverse(field: cloudwatchLogs)
18+
managedAirflows: [awsManagedAirflow] @hasInverse(field: cloudwatchLogs)
1719
}
1820

1921
type awsMetricFilter

src/services/ec2/connections.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -310,7 +310,7 @@ export default ({
310310
id: elasticBeanstalkEnv.EnvironmentId,
311311
resourceType: services.elasticBeanstalkEnv,
312312
relation: 'child',
313-
field: 'elasticBeanstalkEnv',
313+
field: 'elasticBeanstalkEnvs',
314314
})
315315
}
316316
}

src/services/ec2/schema.graphql

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -108,15 +108,15 @@ type awsEc2 implements awsBaseService @key(fields: "arn") {
108108
alb: [awsAlb] @hasInverse(field: ec2Instance)
109109
asg: [awsAsg] @hasInverse(field: ec2Instance)
110110
ebs: [awsEbs] @hasInverse(field: ec2Instance)
111-
eip: [awsEip] @hasInverse(field: ec2Instance)
112-
networkInterfaces: [awsNetworkInterface] @hasInverse(field: ec2Instance)
113-
securityGroups: [awsSecurityGroup] @hasInverse(field: ec2Instance)
114-
subnets: [awsSubnet] @hasInverse(field: ec2Instances)
115111
ecsContainer: [awsEcsContainer] @hasInverse(field: ec2Instances)
116-
emrInstance: [awsEmrInstance] @hasInverse(field: ec2Instance)
117-
systemsManagerInstance: [awsSystemsManagerInstance] @hasInverse(field: ec2Instance)
112+
eip: [awsEip] @hasInverse(field: ec2Instance)
118113
eksCluster: [awsEksCluster] @hasInverse(field: ec2Instances)
119114
elasticBeanstalkEnv: [awsElasticBeanstalkEnv] @hasInverse(field: ec2Instances)
115+
emrInstance: [awsEmrInstance] @hasInverse(field: ec2Instance)
120116
iamInstanceProfile: [awsIamInstanceProfile] @hasInverse(field: ec2Instances)
121117
iamRole: [awsIamRole] @hasInverse(field: ec2Instances)
118+
networkInterfaces: [awsNetworkInterface] @hasInverse(field: ec2Instance)
119+
securityGroups: [awsSecurityGroup] @hasInverse(field: ec2Instance)
120+
subnets: [awsSubnet] @hasInverse(field: ec2Instances)
121+
systemsManagerInstance: [awsSystemsManagerInstance] @hasInverse(field: ec2Instance)
122122
}

src/services/ecsService/schema.graphql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ type awsEcsService implements awsBaseService @key(fields: "arn") {
2929
ecsTaskDefinition: [awsEcsTaskDefinition] @hasInverse(field: ecsService)
3030
ecsTaskSet: [awsEcsTaskSet] @hasInverse(field: ecsService)
3131
elb: [awsElb] @hasInverse(field: ecsService)
32-
iamRoles: [awsIamRole] @hasInverse(field: ecsService)
32+
iamRoles: [awsIamRole] @hasInverse(field: ecsServices)
3333
securityGroups: [awsSecurityGroup] @hasInverse(field: ecsService)
3434
subnet: [awsSubnet] @hasInverse(field: ecsService) #change to plural
3535
vpc: [awsVpc] @hasInverse(field: ecsService)

0 commit comments

Comments
 (0)