Skip to content

Commit 73f1dc0

Browse files
authored
Replace "SSL" with "TLS" where possible in documentation (#2962)
1 parent a6a09f6 commit 73f1dc0

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

docs/examples/cognito-ingress-template.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,12 +46,12 @@ metadata:
4646
# The subdomain name only is sufficient for `UserPoolDomain`
4747
# e.g. if `FQDN=app.auth.ap-northeast-1.amazoncognito.com` then `UserPoolDomain=app`
4848
alb.ingress.kubernetes.io/auth-idp-cognito: '{"UserPoolArn": "arn:aws:cognito-idp:<region>:<account-id>:userpool/<region><cognito-id>","UserPoolClientId":"<user-pool-client-id>","UserPoolDomain":"<user-pool-authentication-domain>"}'
49-
# ACM certificate ARN for your SSL domain
49+
# ACM certificate ARN for your TLS domain
5050
alb.ingress.kubernetes.io/certificate-arn: arn:aws:acm:<region>:<account-id>:certificate/<certificate-id>
5151
spec:
5252
ingressClassName: alb
5353
rules:
54-
# If you are using ExternalDNS, this will become your applications FQDN
54+
# If you are using ExternalDNS, this will become your application's FQDN
5555
- host: <FQDN>
5656
http:
5757
paths:

docs/guide/ingress/annotations.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -550,7 +550,7 @@ Access control for LoadBalancer can be controlled with following annotations:
550550
ALB supports authentication with Cognito or OIDC. See [Authenticate Users Using an Application Load Balancer](https://docs.aws.amazon.com/elasticloadbalancing/latest/application/listener-authenticate-users.html) for more details.
551551

552552
!!!warning "HTTPS only"
553-
Authentication is only supported for HTTPS listeners, see [SSL](#ssl) for configure HTTPS listener.
553+
Authentication is only supported for HTTPS listeners. See [TLS](#tls) for configuring HTTPS listeners.
554554

555555
- <a name="auth-type">`alb.ingress.kubernetes.io/auth-type`</a> specifies the authentication type on targets.
556556

@@ -725,8 +725,8 @@ Health check on target groups can be controlled with following annotations:
725725
```alb.ingress.kubernetes.io/unhealthy-threshold-count: '2'
726726
```
727727

728-
## SSL
729-
SSL support can be controlled with following annotations:
728+
## TLS
729+
TLS support can be controlled with the following annotations:
730730

731731
- <a name="certificate-arn">`alb.ingress.kubernetes.io/certificate-arn`</a> specifies the ARN of one or more certificate managed by [AWS Certificate Manager](https://aws.amazon.com/certificate-manager)
732732

0 commit comments

Comments
 (0)