From 6b390489c56837d4ef3fbbeaecb3f3eb4afffde6 Mon Sep 17 00:00:00 2001 From: Steven Martin Date: Sun, 14 Apr 2024 09:49:18 -0400 Subject: [PATCH] docs: update docs cert validity period descriptions --- docs/pages/database-access/guides/oracle-self-hosted.mdx | 2 +- docs/pages/database-access/guides/postgres-self-hosted.mdx | 2 +- docs/pages/database-access/troubleshooting.mdx | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/pages/database-access/guides/oracle-self-hosted.mdx b/docs/pages/database-access/guides/oracle-self-hosted.mdx index 661f680af1fc7..03227ad2886c2 100644 --- a/docs/pages/database-access/guides/oracle-self-hosted.mdx +++ b/docs/pages/database-access/guides/oracle-self-hosted.mdx @@ -67,7 +67,7 @@ Follow the instructions below to generate TLS credentials for your database. ```code # Export Teleport's certificate authority and a generated certificate/key pair -# for host db.example.com with a 1-year validity period. +# for host db.example.com with a 3-month validity period. $ tctl auth sign --format=oracle --host=db.example.com --out=server --ttl=2190h ``` diff --git a/docs/pages/database-access/guides/postgres-self-hosted.mdx b/docs/pages/database-access/guides/postgres-self-hosted.mdx index dce17a9244487..a8cd08b84c265 100644 --- a/docs/pages/database-access/guides/postgres-self-hosted.mdx +++ b/docs/pages/database-access/guides/postgres-self-hosted.mdx @@ -45,7 +45,7 @@ Create the secrets: ```code # Export Teleport's certificate authority and a generate certificate/key pair -# for host db.example.com with a 1-year validity period. +# for host db.example.com with a 3-month validity period. $ tctl auth sign --format=db --host=db.example.com --out=server --ttl=2190h ``` diff --git a/docs/pages/database-access/troubleshooting.mdx b/docs/pages/database-access/troubleshooting.mdx index 5b6ba5c8bacea..bfbc8d12c7900 100644 --- a/docs/pages/database-access/troubleshooting.mdx +++ b/docs/pages/database-access/troubleshooting.mdx @@ -24,7 +24,7 @@ to create a certificate for PostgreSQL, the command looks like this: ```bash # Export Teleport's certificate authority and a generate certificate/key pair -# for host db.example.com with a 1-year validity period. +# for host db.example.com with a 3-month validity period. $ tctl auth sign --format=db --host=db.example.com --out=server --ttl=2190h ```