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

[v17] Remove var labels in code snippets #49204

Merged
merged 1 commit into from
Nov 20, 2024
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
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ To do this you need:

Create this minimal `main.tf` file:

```var
```hcl
terraform {
required_providers {
teleport = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ You can run the Teleport Terraform provider from this shell.

1. Create a `main.tf` file containing this minimal Terraform code:

```var
```hcl
terraform {
required_providers {
teleport = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -118,8 +118,10 @@ cluster. You will create a local Teleport user for this purpose.
To prepare a Terraform configuration file:

1. Create a new file called `main.tf` and open it in an editor.

1. Define an example user and role using Terraform by pasting the following content into the `main.tf` file:
```var

```hcl
terraform {
required_providers {
teleport = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ name="example.teleport.sh:443" /> to the host **and port** of your Teleport
Proxy Service, and <Var name="endpoint:port" /> to the host **and port** of your RDS
database (e.g., `myrds.us-east-1.rds.amazonaws.com:5432`):

```var
```yaml
authToken: <Var name="token" />
proxyAddr: <Var name="example.teleport.sh:443" />
roles: db
Expand Down
Loading