From 2487af19453a0d55a428fb17150f87b24170ccc1 Mon Sep 17 00:00:00 2001 From: Nick Fagerlund Date: Wed, 1 Aug 2018 17:33:11 -0700 Subject: [PATCH] website: atlas backend requires https protocol in address (#18585) Just providing the hostname won't work. This commit adds an example and fixes the explanation. --- website/docs/backends/types/terraform-enterprise.html.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/website/docs/backends/types/terraform-enterprise.html.md b/website/docs/backends/types/terraform-enterprise.html.md index d8493955d5..ecd87425ce 100644 --- a/website/docs/backends/types/terraform-enterprise.html.md +++ b/website/docs/backends/types/terraform-enterprise.html.md @@ -33,6 +33,7 @@ workflow](/docs/enterprise/run/cli.html) instead. terraform { backend "atlas" { name = "example_corp/networking-prod" + address = "https://app.terraform.io" # optional } } ``` @@ -60,5 +61,6 @@ The following configuration options / environment variables are supported: token](/docs/enterprise/users-teams-organizations/users.html#api-tokens). We recommend using the `ATLAS_TOKEN` environment variable rather than setting `access_token` in the configuration. -* `address` - (Optional) The hostname of a Terraform Enterprise instance. - (Defaults to the SaaS version of Terraform Enterprise.) +* `address` - (Optional) The URL of a Terraform Enterprise instance. Defaults to + the SaaS version of Terraform Enterprise, at `"https://app.terraform.io"`; if + you use a private install, provide its URL here.