Skip to content

Commit a891be1

Browse files
committed
Update docs
1 parent 72bacdf commit a891be1

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ This repo contains materials for learning how to use infrastructure-as-code prac
1111

1212
Note: all the code in this repo is used only for demonstration and teaching purposes and should not be used in
1313
production. If you need help using Packer, Terraform, or any other DevOps tools in production, reach out to us at
14-
[Atomic Squirrel](http://www.atomic-squirrel.net/).
14+
[Gruntwork](http://www.gruntwork.io/).

terraform-example-basic/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,8 @@ resource "aws_eip" "example" {
5353
}
5454
```
5555

56-
Notice how the `instance` parameter is set to `"${aws_instance.example.id}"`. This is dependency on `id` parameter of
57-
the `aws_instance` you've already created. Terraform now knows that when you `apply` these templates, it needs to
56+
Notice how the `instance` parameter is set to `"${aws_instance.example.id}"`. This is dependency on the `id` attribute
57+
of the `aws_instance` you've already created. Terraform now knows that when you `apply` these templates, it needs to
5858
create the `aws_instance` first, pull out its `id`, and then it can create the `aws_eip`.
5959

6060
## Cleaning up

0 commit comments

Comments
 (0)