Skip to content
This repository has been archived by the owner on Dec 16, 2024. It is now read-only.

Update tls docs #584

Merged
merged 1 commit into from
Sep 20, 2023
Merged
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
6 changes: 4 additions & 2 deletions docs/tlspolicy/tls-policy.md
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ Any type of Issuer that is supported by CertManager can be referenced in the TLS

Create a secret containing AWS access key and secret:
```bash
kubectl create secret generic le-aws-credentials --from-literal=AWS_SECRET_ACCESS_KEY=<AWS_SECRET_ACCESS_KEY> -n multi-cluster-gateways
kubectl create secret generic le-aws-credentials --from-literal=AWS_ACCESS_KEY_ID=<AWS_ACCESS_KEY_ID> --from-literal=AWS_SECRET_ACCESS_KEY=<AWS_SECRET_ACCESS_KEY> -n multi-cluster-gateways
```

Create a new Issuer:
Expand All @@ -152,7 +152,9 @@ spec:
route53:
hostedZoneID: <YOUR HOSTED ZONE ID>
region: us-east-1
accessKeyID: <AWS_SECRET_ACCESS_KEY_ID>
accessKeyIDSecretRef:
key: AWS_ACCESS_KEY_ID
name: le-aws-credentials
secretAccessKeySecretRef:
key: AWS_SECRET_ACCESS_KEY
name: le-aws-credentials
Expand Down