website: Standardize page titles in 0.11 language docs

This commit is contained in:
Nick Fagerlund 2019-01-16 16:11:38 -08:00 committed by Nick Fagerlund
parent a9bcc0fe06
commit 2dcd4a886f
15 changed files with 25 additions and 25 deletions

View File

@ -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

View File

@ -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.

View File

@ -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

View File

@ -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}`.

View File

@ -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.

View File

@ -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.

View File

@ -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

View File

@ -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

View File

@ -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_,

View File

@ -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,

View File

@ -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.

View File

@ -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

View File

@ -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.

View File

@ -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.

View File

@ -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.