Skip to content

Commit

Permalink
Cloud customers should use port 443 when configuring agents (#13064)
Browse files Browse the repository at this point in the history
  • Loading branch information
bpdohall authored Jun 2, 2022
1 parent 50c1de5 commit 1a25fe5
Show file tree
Hide file tree
Showing 14 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion docs/pages/application-access/getting-started.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ $ sudo teleport app start \
--auth-server=https://teleport.example.com:3080
```

Change `https://teleport.example.com:3080` to the address and port of your Teleport Proxy Server. If you are a Teleport Cloud cluster, use your tenant's subdomain, e.g., `mytenant.teleport.sh`.
Change `https://teleport.example.com:3080` to the address and port of your Teleport Proxy Server. If you are a Teleport Cloud customer, use port 443 of your tenant's subdomain, e.g., `mytenant.teleport.sh:443`.

Make sure to update `--app-name` and `--app-uri` accordingly if you're using your own web application.

Expand Down
2 changes: 1 addition & 1 deletion docs/pages/database-access/getting-started.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ address of your Teleport Cloud tenant.
$ teleport db start \
--token=/tmp/token \
--db-name=aurora \
--auth-server=mytenant.teleport.sh \
--auth-server=mytenant.teleport.sh:443 \
--db-protocol=postgres \
--db-uri=postgres-aurora-instance-1.abcdefghijklm.us-west-1.rds.amazonaws.com:5432 \
--db-aws-region=us-west-1
Expand Down
4 changes: 2 additions & 2 deletions docs/pages/database-access/guides/azure-postgres-mysql.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ endpoint.
```code
$ teleport db start \
--token=/tmp/token \
--auth-server=mytenant.teleport.sh \
--auth-server=mytenant.teleport.sh:443 \
--name=azure-db \
--protocol=postgres \
--uri=example.postgres.database.azure.com:5321 \
Expand All @@ -121,7 +121,7 @@ endpoint.
```code
$ teleport db start \
--token=/tmp/token \
--auth-server=mytenant.teleport.sh \
--auth-server=mytenant.teleport.sh:443 \
--name=azure-db \
--protocol=mysql \
--uri=example.mysql.database.azure.com:3306 \
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ Start the Teleport Database Service, pointing the `--auth-server` flag at the ad
```code
$ teleport db start \
--token=/tmp/token \
--auth-server=mytenant.teleport.sh \
--auth-server=mytenant.teleport.sh:443 \
--name=roach \
--protocol=cockroachdb \
--uri=roach.example.com:26257 \
Expand Down
2 changes: 1 addition & 1 deletion docs/pages/database-access/guides/mongodb-atlas.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ On the node where you will run the Database Service, start Teleport, pointing th
```code
$ teleport db start \
--token=/tmp/token \
--auth-server=mytenant.teleport.sh \
--auth-server=mytenant.teleport.sh:443 \
--name=mongodb-atlas \
--protocol=mongodb \
--uri=mongodb+srv://cluster0.abcde.mongodb.net \
Expand Down
2 changes: 1 addition & 1 deletion docs/pages/database-access/guides/mongodb-self-hosted.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ address of your Teleport Cloud tenant:
```code
$ teleport db start \
--token=/tmp/token \
--auth-server=mytenant.teleport.sh \
--auth-server=mytenant.teleport.sh:443 \
--name=example-mongo \
--protocol=mongodb \
--uri=mongo.example.com:27017 \
Expand Down
4 changes: 2 additions & 2 deletions docs/pages/database-access/guides/mysql-self-hosted.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ over a reverse tunnel.
```code
$ teleport db start \
--token=/tmp/token \
--auth-server=mytenant.teleport.sh \
--auth-server=mytenant.teleport.sh:443 \
--name=test \
--protocol=mysql \
--uri=mysql.example.com:3306 \
Expand Down Expand Up @@ -189,7 +189,7 @@ $ teleport db configure create \
$ teleport db configure create \
-o file \
--token=/tmp/token \
--proxy=mytenant.teleport.sh \
--proxy=mytenant.teleport.sh:443 \
--name=test \
--protocol=mysql \
--uri=mysql.example.com:3306 \
Expand Down
2 changes: 1 addition & 1 deletion docs/pages/database-access/guides/postgres-redshift.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ $ teleport db configure create \
```code
$ teleport db configure create \
-o file \
--proxy=mytenant.teleport.sh:3080 \
--proxy=mytenant.teleport.sh:443 \
--token=/tmp/token \
--redshift-discovery=us-west-1
```
Expand Down
4 changes: 2 additions & 2 deletions docs/pages/database-access/guides/postgres-self-hosted.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ cluster over a reverse tunnel.
```code
$ teleport db start \
--token=/tmp/token \
--auth-server=mytenant.teleport.sh \
--auth-server=mytenant.teleport.sh:443 \
--name=test \
--protocol=postgres \
--uri=postgres.example.com:5432 \
Expand Down Expand Up @@ -163,7 +163,7 @@ $ teleport db configure create \
$ teleport db configure create \
-o file \
--token=/tmp/token \
--proxy=teleport.example.com:3080 \
--proxy=mytenant.teleport.sh:443 \
--name=test \
--protocol=postgres \
--uri=postgres.example.com:5432 \
Expand Down
2 changes: 1 addition & 1 deletion docs/pages/database-access/guides/rds.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ $ teleport db configure create \
```code
$ teleport db configure create \
-o file \
--proxy=mytenant.teleport.sh \
--proxy=mytenant.teleport.sh:443 \
--token=/tmp/token \
--rds-discovery=us-west-1
```
Expand Down
2 changes: 1 addition & 1 deletion docs/pages/database-access/guides/redis-cluster.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ address of your Teleport Cloud tenant:
```code
$ teleport db start \
--token=/tmp/token \
--auth-server=mytenant.teleport.sh \
--auth-server=mytenant.teleport.sh:443 \
--name=example-redis \
--protocol=redis \
--uri=rediss://redis.example.com:6379?mode=cluster \
Expand Down
2 changes: 1 addition & 1 deletion docs/pages/database-access/guides/redis.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ address of your Teleport Cloud tenant:
```code
$ teleport db start \
--token=/tmp/token \
--auth-server=mytenant.teleport.sh \
--auth-server=mytenant.teleport.sh:443 \
--name=example-redis \
--protocol=redis \
--uri=rediss://redis.example.com:6379 \
Expand Down
2 changes: 1 addition & 1 deletion docs/pages/database-access/guides/sql-server-ad.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ endpoint.
```code
$ teleport db start \
--token=/tmp/token \
--auth-server=mytenant.teleport.sh \
--auth-server=mytenant.teleport.sh:443 \
--name=sqlserver \
--protocol=sqlserver \
--uri=sqlserver.example.com:1433 \
Expand Down
2 changes: 1 addition & 1 deletion docs/pages/database-access/reference/cli.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ $ teleport db start \
```code
$ teleport db start \
--token=/path/to/token \
--auth-server=mytenant.teleport.sh:3080 \
--auth-server=mytenant.teleport.sh:443 \
--name=example \
--protocol=postgres \
--uri=postgres.mytenant.teleport.sh:5432
Expand Down

0 comments on commit 1a25fe5

Please sign in to comment.