website: fix various typos

This commit is contained in:
Anthony Galea 2018-03-02 18:16:01 +01:00 committed by Martin Atkins
parent 26058acdef
commit 664391c254
3 changed files with 4 additions and 4 deletions

View File

@ -31,7 +31,7 @@ $ terraform destroy
- aws_instance.example
```
The `-` prefix indicates that a the instance will be destroyed. As with apply,
The `-` prefix indicates that the instance will be destroyed. As with apply,
Terraform shows its execution plan and waits for approval before making any
changes.

View File

@ -38,7 +38,7 @@ larger building-blocks for your infrastructure.
In this example, we're going to use
[the Consul Terraform module for AWS](https://registry.terraform.io/modules/hashicorp/consul/aws),
which will set up a complete [Consul](https://www.consul.io) cluster.
This and other modules can found via the search feature on the Terraform
This and other modules can be found via the search feature on the Terraform
Registry site.
Create a configuration file with the following contents:
@ -143,7 +143,7 @@ The `module.consul.module.consul_clients` prefix shown above indicates
not only that the resource is from the `module "consul"` block we wrote,
but in fact that this module has its own `module "consul_clients"` block
within it. Modules can be nested to decompose complex systems into
managable components.
manageable components.
The full set of resources created by this module includes an autoscaling group,
security groups, IAM roles and other individual resources that all support

View File

@ -85,7 +85,7 @@ It contains the IP, just as we asked!
## Failed Provisioners and Tainted Resources
If a resource successfully creates but fails during provisioning,
Terraform will error and mark the resource as "tainted." A
Terraform will error and mark the resource as "tainted". A
resource that is tainted has been physically created, but can't
be considered safe to use since provisioning failed.