Skip to content

Commit e72fa36

Browse files
committed
Fix example in docs
1 parent 17c662a commit e72fa36

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

modules/instance-type/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ page](https://github.com/gruntwork-io/package-terraform-utilities/releases):
2626
module "path" {
2727
source = "git::[email protected]:gruntwork-io/package-terraform-utilities.git//modules/instance-type?ref=<VERSION>"
2828
29-
instance_types = ["t3.micro", "t2.micro"]
29+
instance_types = ["t2.micro", "t3.micro"]
3030
}
3131
```
3232

@@ -41,5 +41,5 @@ use. This will be the first instance type from your `instance_types` input that
4141
region. If no instance type is available in all AZs, you'll get an error.
4242

4343
For example, as of July, 2020, if you run `apply` on the code above in `eu-west-1`, the `recommended_instance_type`
44-
will be `t3.micro`, as that's available in all AZs in `eu-west-1`. However, if you run the same code in
45-
`ap-northeast-2`, the `recommended_instance_type` will be `t2.micro`, as `t3.micro` is only available in 2 of the 4 AZs.
44+
will be `t2.micro`, as that's available in all AZs in `eu-west-1`. However, if you run the same code in
45+
`ap-northeast-2`, the `recommended_instance_type` will be `t3.micro`, as `t2.micro` is only available in 2 of the 4 AZs.

0 commit comments

Comments
 (0)