Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Disable tls1.3 by default for compliance #3828

Merged
merged 1 commit into from
Jul 14, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions k8s/infrastructure/bases/istio/ingress-gateway.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ spec:
privateKey: sds
serverCertificate: sds
minProtocolVersion: TLSV1_2 # ITPIN 6.1.3 implements TLS 1.2, or subsequent versions
maxProtocolVersion: TLSV1_2
cipherSuites: # ITPIN 6.1.3 uses supported cryptographic algorithms
- ECDHE-ECDSA-AES256-GCM-SHA384
- ECDHE-RSA-AES256-GCM-SHA384
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ spec:
privateKey: sds
serverCertificate: sds
minProtocolVersion: TLSV1_2
maxProtocolVersion: TLSV1_2
cipherSuites:
- TLS_AES_128_GCM_SHA256
- TLS_AES_256_GCM_SHA384
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ spec:
privateKey: sds
serverCertificate: sds
minProtocolVersion: TLSV1_2
maxProtocolVersion: TLSV1_2
cipherSuites:
- TLS_AES_128_GCM_SHA256
- TLS_AES_256_GCM_SHA384
Expand Down