Skip to content

Commit def7137

Browse files
committed
fix: Added SSLCertificateId needed for the NIST 16.5 rule
1 parent 13d0560 commit def7137

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
@@ -2751,6 +2751,7 @@ export type AwsElbListener = {
27512751
loadBalancerPort?: Maybe<Scalars['Int']>;
27522752
loadBalancerProtocol?: Maybe<Scalars['String']>;
27532753
name?: Maybe<Scalars['String']>;
2754+
sslCertificateId?: Maybe<Scalars['String']>;
27542755
};
27552756

27562757
export type AwsElbSourceSecurityGroup = {

0 commit comments

Comments
 (0)