Skip to content

Commit efe7eaa

Browse files
authored
Merge pull request #61 from cloudgraphdev/fix/add-sslCertificate-to-ELB-service
fix: Added SSLCertificateId needed for NIST 16.5 rule
2 parents 0e82271 + def7137 commit efe7eaa

3 files changed

Lines changed: 4 additions & 0 deletions

File tree

src/services/elb/format.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ export default ({
6363
LoadBalancerPort,
6464
InstanceProtocol,
6565
InstancePort,
66+
SSLCertificateId,
6667
},
6768
}) => {
6869
return {
@@ -74,6 +75,7 @@ export default ({
7475
loadBalancerProtocol: Protocol,
7576
instancePort: InstancePort,
7677
instanceProtocol: InstanceProtocol,
78+
sslCertificateId: SSLCertificateId,
7779
}
7880
}
7981
)

src/services/elb/schema.graphql

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,4 +72,5 @@ type awsElbListener
7272
loadBalancerProtocol: String
7373
instancePort: Int
7474
instanceProtocol: String
75+
sslCertificateId: String
7576
}

src/types/generated.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2752,6 +2752,7 @@ export type AwsElbListener = {
27522752
loadBalancerPort?: Maybe<Scalars['Int']>;
27532753
loadBalancerProtocol?: Maybe<Scalars['String']>;
27542754
name?: Maybe<Scalars['String']>;
2755+
sslCertificateId?: Maybe<Scalars['String']>;
27552756
};
27562757

27572758
export type AwsElbSourceSecurityGroup = {

0 commit comments

Comments
 (0)