|
8 | 8 |
|
9 | 9 | * ## Usage example |
10 | 10 |
|
11 | | -* 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: |
| 11 | +* 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: |
12 | 12 |
|
13 | 13 | * ```hcl |
| 14 | +* variable "web_type" { |
| 15 | +* description = "Size/type of the host." |
| 16 | +* default = "m1.large" |
| 17 | +* } |
| 18 | +* |
14 | 19 | * module "ebs_optimized" { |
15 | | - source = "" |
16 | | - version = |
| 20 | +* source = "terraform-aws-modules/ebs-optimized/aws" |
| 21 | +* instance_type = "${var.web_type}" |
| 22 | +* } |
| 23 | +* |
| 24 | +* resource "aws_instance" "web" { |
| 25 | +* ami = "${data.aws_ami.ubuntu.id}" |
| 26 | +* instance_type = "${var.web_type}" |
| 27 | +* ebs_optimized = "${module.ebs_optimized.answer}" |
17 | 28 | * } |
18 | 29 | * ``` |
19 | 30 |
|
20 | 31 | * ## Testing |
21 | 32 |
|
22 | 33 | * 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: |
23 | 34 |
|
24 | | -* 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). |
| 35 | +* 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). |
25 | 36 | * 2. Install bundler and the gems from our Gemfile: |
26 | 37 | * |
27 | 38 | * ```bash |
|
46 | 57 |
|
47 | 58 | * ## Contributing |
48 | 59 |
|
49 | | -* Report issues/questions/feature requests on in the [issues](https://github.com/run-at-scale/terraform-utils-ebs-optimized/issues/new) section. |
| 60 | +* Report issues/questions/feature requests on in the [issues](https://github.com/terraform-aws-modules/terraform-aws-ebs-optimized/issues/new) section. |
50 | 61 |
|
51 | | -* Full contributing [guidelines are covered here](https://github.com/run-at-scale/terraform-utils-ebs-optimized/blob/master/CONTRIBUTING.md). |
| 62 | +* Full contributing [guidelines are covered here](https://github.com/terraform-aws-modules/terraform-aws-ebs-optimized/blob/master/CONTRIBUTING.md). |
52 | 63 |
|
53 | 64 | * ## Change log |
54 | 65 |
|
55 | | -* The [changelog](https://github.com/run-at-scale/terraform-utils-ebs-optimized/tree/master/CHANGELOG.md) captures all important release notes. |
| 66 | +* The [changelog](https://github.com/terraform-aws-modules/terraform-aws-ebs-optimized/tree/master/CHANGELOG.md) captures all important release notes. |
56 | 67 |
|
57 | 68 | * ## Authors |
58 | 69 |
|
59 | 70 | * Created and maintained by [Brandon O'Connor](https://github.com/brandoconnor) - brandon@atscale.run. |
60 | | -* Many thanks to [the contributors listed here](https://github.com/run-at-scale/terraform-utils-ebs-optimized/graphs/contributors)! |
| 71 | +* Many thanks to [the contributors listed here](https://github.com/terraform-aws-modules/terraform-aws-ebs-optimized/graphs/contributors)! |
61 | 72 |
|
62 | 73 | * ## License |
63 | 74 |
|
64 | | -* MIT Licensed. See [LICENSE](https://github.com/run-at-scale/terraform-utils-ebs-optimized/tree/master/LICENSE) for full details. |
| 75 | +* MIT Licensed. See [LICENSE](https://github.com/terraform-aws-modules/terraform-aws-ebs-optimized/tree/master/LICENSE) for full details. |
65 | 76 | */ |
66 | 77 |
|
67 | 78 | locals { |
|
0 commit comments