Skip to content

Commit

Permalink
Merge pull request #974 from jvoorhis/documentation-fixes
Browse files Browse the repository at this point in the history
Fill in TODOs in documentation
  • Loading branch information
phinze committed Feb 17, 2015
2 parents 3339593 + c4869ef commit 451cff8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion website/source/intro/getting-started/dependencies.html.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ to infer dependencies based on usage of attributes of other
resources.

Using this information, Terraform builds a graph of resources.
This tells Terraform not only what order to create resources,
This tells Terraform not only in what order to create resources,
but also what resources can be created in parallel. In our example,
since the IP address depended on the EC2 instance, they could
not be created in parallel.
Expand Down
7 changes: 5 additions & 2 deletions website/source/intro/getting-started/modules.html.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,9 @@ With the modules downloaded, we can now plan and apply it. If you run

```
$ terraform plan
TODO
...
+ module.consul
4 resource(s)
```

As you can see, the module is treated like a black box. In the plan, Terraform
Expand All @@ -97,7 +99,8 @@ will have some cost associated with it.

```
$ terraform apply
TODO
...
Apply complete! Resources: 3 added, 0 changed, 0 destroyed.
```

After a few minutes, you'll have a three server Consul cluster up and
Expand Down

0 comments on commit 451cff8

Please sign in to comment.