From 2dcd4a886f3102daf9a6d19ec7e163e7e75fac6d Mon Sep 17 00:00:00 2001 From: Nick Fagerlund Date: Wed, 16 Jan 2019 16:11:38 -0800 Subject: [PATCH] website: Standardize page titles in 0.11 language docs --- website/docs/configuration-0-11/data-sources.html.md | 4 ++-- website/docs/configuration-0-11/environment-variables.html.md | 2 +- website/docs/configuration-0-11/index.html.md | 4 ++-- website/docs/configuration-0-11/interpolation.html.md | 2 +- website/docs/configuration-0-11/load.html.md | 2 +- website/docs/configuration-0-11/locals.html.md | 4 ++-- website/docs/configuration-0-11/modules.html.md | 4 ++-- website/docs/configuration-0-11/outputs.html.md | 4 ++-- website/docs/configuration-0-11/override.html.md | 4 ++-- website/docs/configuration-0-11/providers.html.md | 4 ++-- website/docs/configuration-0-11/resources.html.md | 4 ++-- website/docs/configuration-0-11/syntax.html.md | 2 +- website/docs/configuration-0-11/terraform-enterprise.html.md | 2 +- website/docs/configuration-0-11/terraform.html.md | 4 ++-- website/docs/configuration-0-11/variables.html.md | 4 ++-- 15 files changed, 25 insertions(+), 25 deletions(-) diff --git a/website/docs/configuration-0-11/data-sources.html.md b/website/docs/configuration-0-11/data-sources.html.md index 7f374641a0..2b7b9e268f 100644 --- a/website/docs/configuration-0-11/data-sources.html.md +++ b/website/docs/configuration-0-11/data-sources.html.md @@ -1,12 +1,12 @@ --- layout: "docs" -page_title: "Configuring Data Sources" +page_title: "Data Sources - 0.11 Configuration Language" sidebar_current: "docs-conf-old-data-sources" description: |- Data sources allow data to be fetched or computed for use elsewhere in Terraform configuration. --- -# Data Source Configuration +# Data Sources *Data sources* allow data to be fetched or computed for use elsewhere in Terraform configuration. Use of data sources allows a Terraform diff --git a/website/docs/configuration-0-11/environment-variables.html.md b/website/docs/configuration-0-11/environment-variables.html.md index 85110d060f..256ee50d21 100644 --- a/website/docs/configuration-0-11/environment-variables.html.md +++ b/website/docs/configuration-0-11/environment-variables.html.md @@ -1,6 +1,6 @@ --- layout: "docs" -page_title: "Environment Variables" +page_title: "Environment Variables - 0.11 Configuration Language" sidebar_current: "docs-conf-old-environment-variables" description: |- Terraform uses different environment variables that can be used to configure various aspects of how Terraform behaves. this section documents those variables, their potential values, and how to use them. diff --git a/website/docs/configuration-0-11/index.html.md b/website/docs/configuration-0-11/index.html.md index 02b90d3bd0..93fe64e602 100644 --- a/website/docs/configuration-0-11/index.html.md +++ b/website/docs/configuration-0-11/index.html.md @@ -1,12 +1,12 @@ --- layout: "docs" -page_title: "Configuration" +page_title: "0.11 Configuration Language" sidebar_current: "docs-conf-old" description: |- Terraform uses text files to describe infrastructure and to set variables. These text files are called Terraform _configurations_ and end in `.tf`. This section talks about the format of these files as well as how they're loaded. --- -# Configuration +# Configuration Language Terraform uses text files to describe infrastructure and to set variables. These text files are called Terraform _configurations_ and end in diff --git a/website/docs/configuration-0-11/interpolation.html.md b/website/docs/configuration-0-11/interpolation.html.md index 52441c3d7c..4bfbc927af 100644 --- a/website/docs/configuration-0-11/interpolation.html.md +++ b/website/docs/configuration-0-11/interpolation.html.md @@ -1,6 +1,6 @@ --- layout: "docs" -page_title: "Interpolation Syntax" +page_title: "Interpolation Syntax - 0.11 Configuration Language" sidebar_current: "docs-conf-old-interpolation" description: |- Embedded within strings in Terraform, whether you're using the Terraform syntax or JSON syntax, you can interpolate other values into strings. These interpolations are wrapped in `${}`, such as `${var.foo}`. diff --git a/website/docs/configuration-0-11/load.html.md b/website/docs/configuration-0-11/load.html.md index 32ed3d0c13..131716b44d 100644 --- a/website/docs/configuration-0-11/load.html.md +++ b/website/docs/configuration-0-11/load.html.md @@ -1,6 +1,6 @@ --- layout: "docs" -page_title: "Load Order and Semantics" +page_title: "Load Order and Semantics - 0.11 Configuration Language" sidebar_current: "docs-conf-old-load" description: |- When invoking any command that loads the Terraform configuration, Terraform loads all configuration files within the directory specified in alphabetical order. diff --git a/website/docs/configuration-0-11/locals.html.md b/website/docs/configuration-0-11/locals.html.md index 514948e58b..bc89b91de5 100644 --- a/website/docs/configuration-0-11/locals.html.md +++ b/website/docs/configuration-0-11/locals.html.md @@ -1,13 +1,13 @@ --- layout: "docs" -page_title: "Configuring Local Values" +page_title: "Local Values - 0.11 Configuration Language" sidebar_current: "docs-conf-old-locals" description: |- Local values assign a name to an expression that can then be used multiple times within a module. --- -# Local Value Configuration +# Local Values Local values assign a name to an expression, that can then be used multiple times within a module. diff --git a/website/docs/configuration-0-11/modules.html.md b/website/docs/configuration-0-11/modules.html.md index 4045d8b98a..753ae0c82d 100644 --- a/website/docs/configuration-0-11/modules.html.md +++ b/website/docs/configuration-0-11/modules.html.md @@ -1,12 +1,12 @@ --- layout: "docs" -page_title: "Configuring Modules" +page_title: "Modules - 0.11 Configuration Language" sidebar_current: "docs-conf-old-modules" description: |- Modules are used in Terraform to modularize and encapsulate groups of resources in your infrastructure. For more information on modules, see the dedicated modules section. --- -# Module Configuration +# Module Modules are used in Terraform to modularize and encapsulate groups of resources in your infrastructure. For more information on modules, see diff --git a/website/docs/configuration-0-11/outputs.html.md b/website/docs/configuration-0-11/outputs.html.md index 36436abdcc..53d46b9850 100644 --- a/website/docs/configuration-0-11/outputs.html.md +++ b/website/docs/configuration-0-11/outputs.html.md @@ -1,12 +1,12 @@ --- layout: "docs" -page_title: "Configuring Outputs" +page_title: "Output Values - 0.11 Configuration Language" sidebar_current: "docs-conf-old-outputs" description: |- Outputs define values that will be highlighted to the user when Terraform applies, and can be queried easily using the output command. Output usage is covered in more detail in the getting started guide. This page covers configuration syntax for outputs. --- -# Output Configuration +# Output Values Outputs define values that will be highlighted to the user when Terraform applies, and can be queried easily using the diff --git a/website/docs/configuration-0-11/override.html.md b/website/docs/configuration-0-11/override.html.md index 216b0c3bcd..afc9c4b4cd 100644 --- a/website/docs/configuration-0-11/override.html.md +++ b/website/docs/configuration-0-11/override.html.md @@ -1,12 +1,12 @@ --- layout: "docs" -page_title: "Overrides" +page_title: "Override Files - 0.11 Configuration Language" sidebar_current: "docs-conf-old-override" description: |- Terraform loads all configuration files within a directory and appends them together. Terraform also has a concept of overrides, a way to create files that are loaded last and merged into your configuration, rather than appended. --- -# Overrides +# Override Files Terraform loads all configuration files within a directory and appends them together. Terraform also has a concept of _overrides_, diff --git a/website/docs/configuration-0-11/providers.html.md b/website/docs/configuration-0-11/providers.html.md index 173c4d99c9..3729d25517 100644 --- a/website/docs/configuration-0-11/providers.html.md +++ b/website/docs/configuration-0-11/providers.html.md @@ -1,12 +1,12 @@ --- layout: "docs" -page_title: "Configuring Providers" +page_title: "Providers - 0.11 Configuration Language" sidebar_current: "docs-conf-old-providers" description: |- Providers are responsible in Terraform for managing the lifecycle of a resource: create, read, update, delete. --- -# Provider Configuration +# Providers Providers are responsible in Terraform for managing the lifecycle of a [resource](/docs/configuration/resources.html): create, diff --git a/website/docs/configuration-0-11/resources.html.md b/website/docs/configuration-0-11/resources.html.md index 25494fc41c..5a609cc165 100644 --- a/website/docs/configuration-0-11/resources.html.md +++ b/website/docs/configuration-0-11/resources.html.md @@ -1,12 +1,12 @@ --- layout: "docs" -page_title: "Configuring Resources" +page_title: "Resources - 0.11 Configuration Language" sidebar_current: "docs-conf-old-resources" description: |- The most important thing you'll configure with Terraform are resources. Resources are a component of your infrastructure. It might be some low level component such as a physical server, virtual machine, or container. Or it can be a higher level component such as an email provider, DNS record, or database provider. --- -# Resource Configuration +# Resources The most important thing you'll configure with Terraform are resources. Resources are a component of your infrastructure. diff --git a/website/docs/configuration-0-11/syntax.html.md b/website/docs/configuration-0-11/syntax.html.md index cdfd439dcf..28daea500d 100644 --- a/website/docs/configuration-0-11/syntax.html.md +++ b/website/docs/configuration-0-11/syntax.html.md @@ -1,6 +1,6 @@ --- layout: "docs" -page_title: "Configuration Syntax" +page_title: "Syntax - 0.11 Configuration Language" sidebar_current: "docs-conf-old-syntax" description: |- The syntax of Terraform configurations is custom. It is meant to strike a diff --git a/website/docs/configuration-0-11/terraform-enterprise.html.md b/website/docs/configuration-0-11/terraform-enterprise.html.md index 338438c15d..369a013ace 100644 --- a/website/docs/configuration-0-11/terraform-enterprise.html.md +++ b/website/docs/configuration-0-11/terraform-enterprise.html.md @@ -1,6 +1,6 @@ --- layout: "docs" -page_title: "Configuring Terraform Push" +page_title: "Terraform Push - 0.11 Configuration Language" sidebar_current: "docs-conf-old-push" description: |- Terraform's push command was a way to interact with the legacy version of Terraform Enterprise. It is not supported in the current version of Terraform Enterprise. diff --git a/website/docs/configuration-0-11/terraform.html.md b/website/docs/configuration-0-11/terraform.html.md index 0e56d745ba..2fba901a19 100644 --- a/website/docs/configuration-0-11/terraform.html.md +++ b/website/docs/configuration-0-11/terraform.html.md @@ -1,12 +1,12 @@ --- layout: "docs" -page_title: "Configuring Terraform" +page_title: "Terraform Settings - 0.11 Configuration Language" sidebar_current: "docs-conf-old-terraform" description: |- The `terraform` configuration section is used to configure Terraform itself, such as requiring a minimum Terraform version to execute a configuration. --- -# Terraform Configuration +# Terraform Settings The `terraform` configuration section is used to configure Terraform itself, such as requiring a minimum Terraform version to execute a configuration. diff --git a/website/docs/configuration-0-11/variables.html.md b/website/docs/configuration-0-11/variables.html.md index f3bfa8ff43..b472d45e39 100644 --- a/website/docs/configuration-0-11/variables.html.md +++ b/website/docs/configuration-0-11/variables.html.md @@ -1,13 +1,13 @@ --- layout: "docs" -page_title: "Configuring Input Variables" +page_title: "Input Variables - 0.11 Configuration Language" sidebar_current: "docs-conf-old-variables" description: |- Input variables are parameters for Terraform modules. This page covers configuration syntax for variables. --- -# Input Variable Configuration +# Input Variables Input variables serve as parameters for a Terraform module.