Make all sentences start with caps + additional tweak wording edits

This commit is contained in:
Laura Pacilio 2021-07-30 14:44:17 -04:00
parent 845470617d
commit 31af9adc00
18 changed files with 18 additions and 19 deletions

View File

@ -2,7 +2,7 @@
layout: "docs"
page_title: "Command: apply"
sidebar_current: "docs-commands-apply"
description: "terraform apply executes the actions proposed in a Terraform plan to create, update, or destroy infrastructure."
description: "The terraform apply command executes the actions proposed in a Terraform plan to create, update, or destroy infrastructure."
---
# Command: apply

View File

@ -2,7 +2,7 @@
layout: "docs"
page_title: "Command: console"
sidebar_current: "docs-commands-console"
description: "terraform console provides an interactive console for
description: "The terraform console command provides an interactive console for
evaluating expressions."
---

View File

@ -2,7 +2,7 @@
layout: "docs"
page_title: "Command: destroy"
sidebar_current: "docs-commands-destroy"
description: "terraform destroy destroys all objects managed by a particular Terraform configuration."
description: "The terraform destroy command destroys all objects managed by a Terraform configuration."
---
# Command: destroy

View File

@ -2,7 +2,7 @@
layout: "docs"
page_title: "Command: env"
sidebar_current: "docs-commands-envcmd"
description: "terraform env is a deprecated, legacy form of the terraform workspace command."
description: "The terraform env command is a deprecated form of the terraform workspace command."
---
# Command: env

View File

@ -2,7 +2,7 @@
layout: "docs"
page_title: "Command: fmt"
sidebar_current: "docs-commands-fmt"
description: "terraform fmt rewrites Terraform configuration files to a canonical format and style."
description: "The terraform fmt command rewrites configuration files to a canonical format and style."
---
# Command: fmt

View File

@ -2,7 +2,7 @@
layout: "docs"
page_title: "Command: force-unlock"
sidebar_current: "docs-commands-force-unlock"
description: "terraform force-unlock manually unlocks the state for a configuration. It does not modify your infrastructure."
description: "The terraform force-unlock command unlocks the state for a configuration. It does not modify your infrastructure."
---
# Command: force-unlock

View File

@ -2,7 +2,7 @@
layout: "docs"
page_title: "Command: get"
sidebar_current: "docs-commands-get"
description: "terraform get downloads and updates modules."
description: "The terraform get command downloads and updates modules."
---
# Command: get

View File

@ -2,7 +2,7 @@
layout: "docs"
page_title: "Command: graph"
sidebar_current: "docs-commands-graph"
description: "terraform graph generates a visual representation of a configuration or execution plan that you can use to generate charts."
description: "The terraform graph command generates a visual representation of a configuration or execution plan that you can use to generate charts."
---
# Command: graph

View File

@ -2,7 +2,7 @@
layout: "docs"
page_title: "Command: import"
sidebar_current: "docs-commands-import"
description: "terraform import brings existing resources into Terraform state."
description: "The terraform import command brings existing resources into Terraform state."
---
# Command: import

View File

@ -2,7 +2,7 @@
layout: "docs"
page_title: "Command: init"
sidebar_current: "docs-commands-init"
description: "terraform init initializes a working directory containing Terraform configuration files and installs the plugins for required providers."
description: "The terraform init command initializes a working directory containing configuration files and installs plugins for required providers."
---
# Command: init

View File

@ -2,7 +2,7 @@
layout: "docs"
page_title: "Command: plan"
sidebar_current: "docs-commands-plan"
description: "terraform plan creates an execution plan that allows you to preview the changes that Terraform will make to your infrastructure."
description: "The terraform plan command creates an execution plan with a preview of the changes that Terraform will make to your infrastructure."
---
# Command: plan

View File

@ -2,8 +2,7 @@
layout: "docs"
page_title: "Command: providers"
sidebar_current: "docs-commands-providers"
description: "terraform providers prints information about the providers used
in the current configuration."
description: "The terraform providers command prints information about the providers required in the current configuration."
---
# Command: providers

View File

@ -2,7 +2,7 @@
layout: "docs"
page_title: "Command: version"
sidebar_current: "docs-commands-version"
description: "terraform version displays the Terraform version and the version of all installed plugins."
description: "The terraform version command displays the Terraform version and the version of all installed plugins."
---
# Command: version

View File

@ -1,7 +1,7 @@
---
layout: "docs"
page_title: "Recovering from State Disasters - Terraform CLI"
descriptin: "Commands to help you restore state backups and override Terraform state protections."
descriptin: "Commands that allow you to restore state backups and override Terraform state protections."
---
# Recovering from State Disasters

View File

@ -1,7 +1,7 @@
---
layout: "language"
page_title: "The depends_on Meta-Argument - Configuration Language"
description: "depends_on allows you to handle hidden resource or module dependencies."
description: "The depends_on meta-argument allows you to handle hidden resource or module dependencies."
---
# The `depends_on` Meta-Argument

View File

@ -1,7 +1,7 @@
---
layout: "language"
page_title: "The for_each Meta-Argument - Configuration Language"
description: "for_each allows you to efficiently manage similar infrastructure resources without writing a separate block for each one."
description: "The for_each meta-argument allows you to manage similar infrastructure resources without writing a separate block for each one."
---
# The `for_each` Meta-Argument

View File

@ -2,7 +2,7 @@
layout: "language"
page_title: "Module Sources"
sidebar_current: "docs-modules-sources"
description: "source tells Terraform where to find child modules's configuration in locations like GitHub, the Terraform Registry, Bitbucket, Git, Mercurial, S3, and GCS."
description: "The source argument tells Terraform where to find child modules's configurations in locations like GitHub, the Terraform Registry, Bitbucket, Git, Mercurial, S3, and GCS."
---
# Module Sources

View File

@ -2,7 +2,7 @@
layout: "language"
page_title: "Provisioners Without a Resource"
sidebar_current: "docs-provisioners-null-resource"
description: "null_resource allows you to configure provisioners that are not directly associated with a single existing resource."
description: "A null_resource allows you to configure provisioners that are not directly associated with a single existing resource."
---
# Provisioners Without a Resource