Skip to content

Commit

Permalink
TF provider configuration environment variables (#10417)
Browse files Browse the repository at this point in the history
* TF provider configuration environment variables

* PR feedback
  • Loading branch information
alloveras authored and zmb3 committed Feb 23, 2022
1 parent 5696e0b commit 0abb6eb
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions docs/pages/setup/reference/terraform-provider.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -31,15 +31,15 @@ terraform {

The provider supports the following options:

| Name | Type | Description |
|-------------------------|------------|-----------------------------------------------------------|
| `addr`| string | Teleport auth or proxy host:port |
| `cert_path`| string | Path to Teleport certificate file |
| `identity_file_path`| string | Path to Teleport identity file |
| `key_path`| string | Path to Teleport key file |
| `profile_dir`| string | Teleport profile path |
| `profile_name`| string | Teleport profile name |
| `root_ca_path`| string | Path to Teleport CA file |
| Name | Type | Description | Environment Variable |
|-------------------------|------------|-------------------------------------------------------|----------------------------------|
| `addr`| string | Teleport auth or proxy address in "host:port" format. | `TF_TELEPORT_ADDR` |
| `cert_path`| string | Path to Teleport certificate file. | `TF_TELEPORT_CERT` |
| `identity_file_path`| string | Path to Teleport identity file. | `TF_TELEPORT_IDENTITY_FILE_PATH` |
| `key_path`| string | Path to Teleport key file. | `TF_TELEPORT_KEY` |
| `profile_dir`| string | Teleport profile path. | `TF_TELEPORT_PROFILE_PATH` |
| `profile_name`| string | Teleport profile name. | `TF_TELEPORT_PROFILE_NAME` |
| `root_ca_path`| string | Path to Teleport CA file. | `TF_TELEPORT_ROOT_CA` |

You need to specify either:

Expand Down

0 comments on commit 0abb6eb

Please sign in to comment.