Skip to content
This repository was archived by the owner on Nov 23, 2021. It is now read-only.

Commit a0fbc5c

Browse files
docs updated
1 parent 8a68140 commit a0fbc5c

File tree

1 file changed

+20
-9
lines changed

1 file changed

+20
-9
lines changed

README.md

Lines changed: 20 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,20 +7,31 @@ lifting of determining if that's possible.
77

88
## Usage example
99

10-
A full example leveraging other community modules is contained in the [examples/ebs_optimized_test_fixture](https://github.com/run-at-scale/terraform-utils-ebs-optimized/tree/master/examples/ebs_optimized_fixture). Here's the gist of using it via the Terraform registry:
10+
A full example leveraging other community modules is contained in the [examples/ebs_optimized_test_fixture](https://github.com/terraform-aws-modules/terraform-aws-ebs-optimized/tree/master/examples/ebs_optimized_fixture). Here's the gist of using it via the Terraform registry:
1111

1212
```hcl
13+
variable "web_type" {
14+
description = "Size/type of the host."
15+
default = "m1.large"
16+
}
17+
1318
module "ebs_optimized" {
14-
source = ""
15-
version =
19+
source = "terraform-aws-modules/ebs-optimized/aws"
20+
instance_type = "${var.web_type}"
21+
}
22+
23+
resource "aws_instance" "web" {
24+
ami = "${data.aws_ami.ubuntu.id}"
25+
instance_type = "${var.web_type}"
26+
ebs_optimized = "${module.ebs_optimized.answer}"
1627
}
1728
```
1829

1930
## Testing
2031

2132
This module has been packaged with inspec tests through [kitchen](https://kitchen.ci/) and [kitchen-terraform](https://newcontext-oss.github.io/kitchen-terraform/). To run them:
2233

23-
1. Install [rvm](https://rvm.io/rvm/install) and the ruby version specified in the [Gemfile](https://github.com/run-at-scale/terraform-utils-ebs-optimized/tree/master/Gemfile).
34+
1. Install [rvm](https://rvm.io/rvm/install) and the ruby version specified in the [Gemfile](https://github.com/terraform-aws-modules/terraform-aws-ebs-optimized/tree/master/Gemfile).
2435
2. Install bundler and the gems from our Gemfile:
2536

2637
```bash
@@ -45,22 +56,22 @@ terraform-docs md ./ | cat -s | ghead -n -1 > README.md
4556
4657
## Contributing
4758
48-
Report issues/questions/feature requests on in the [issues](https://github.com/run-at-scale/terraform-utils-ebs-optimized/issues/new) section.
59+
Report issues/questions/feature requests on in the [issues](https://github.com/terraform-aws-modules/terraform-aws-ebs-optimized/issues/new) section.
4960
50-
Full contributing [guidelines are covered here](https://github.com/run-at-scale/terraform-utils-ebs-optimized/blob/master/CONTRIBUTING.md).
61+
Full contributing [guidelines are covered here](https://github.com/terraform-aws-modules/terraform-aws-ebs-optimized/blob/master/CONTRIBUTING.md).
5162
5263
## Change log
5364
54-
The [changelog](https://github.com/run-at-scale/terraform-utils-ebs-optimized/tree/master/CHANGELOG.md) captures all important release notes.
65+
The [changelog](https://github.com/terraform-aws-modules/terraform-aws-ebs-optimized/tree/master/CHANGELOG.md) captures all important release notes.
5566
5667
## Authors
5768
5869
Created and maintained by [Brandon O'Connor](https://github.com/brandoconnor) - brandon@atscale.run.
59-
Many thanks to [the contributors listed here](https://github.com/run-at-scale/terraform-utils-ebs-optimized/graphs/contributors)!
70+
Many thanks to [the contributors listed here](https://github.com/terraform-aws-modules/terraform-aws-ebs-optimized/graphs/contributors)!
6071

6172
## License
6273

63-
MIT Licensed. See [LICENSE](https://github.com/run-at-scale/terraform-utils-ebs-optimized/tree/master/LICENSE) for full details.
74+
MIT Licensed. See [LICENSE](https://github.com/terraform-aws-modules/terraform-aws-ebs-optimized/tree/master/LICENSE) for full details.
6475

6576
## Inputs
6677

0 commit comments

Comments
 (0)