Skip to content
This repository was archived by the owner on Feb 2, 2023. It is now read-only.

Commit 7d002e7

Browse files
committed
linters are good mmmkay
1 parent 851003e commit 7d002e7

File tree

3 files changed

+17
-19
lines changed

3 files changed

+17
-19
lines changed

README.md

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -52,14 +52,14 @@ Terraform 0.11. Pin module version to ~> 1.0. Submit pull-requests to terraform0
5252

5353
| Name | Version |
5454
|------|---------|
55-
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 0.13.0 |
56-
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | ~> 4.0 |
55+
| terraform | >= 0.13.0 |
56+
| aws | ~> 4.0 |
5757

5858
## Providers
5959

6060
| Name | Version |
6161
|------|---------|
62-
| <a name="provider_aws"></a> [aws](#provider\_aws) | ~> 4.0 |
62+
| aws | ~> 4.0 |
6363

6464
## Modules
6565

@@ -83,25 +83,25 @@ No modules.
8383

8484
| Name | Description | Type | Default | Required |
8585
|------|-------------|------|---------|:--------:|
86-
| <a name="input_desired_capacity"></a> [desired\_capacity](#input\_desired\_capacity) | Desired instance count. | `string` | `2` | no |
87-
| <a name="input_environment"></a> [environment](#input\_environment) | Environment tag. | `string` | n/a | yes |
88-
| <a name="input_image_id"></a> [image\_id](#input\_image\_id) | Amazon ECS-Optimized AMI. | `string` | n/a | yes |
89-
| <a name="input_instance_type"></a> [instance\_type](#input\_instance\_type) | The instance type to use. | `string` | `"t2.micro"` | no |
90-
| <a name="input_max_size"></a> [max\_size](#input\_max\_size) | Maxmimum instance count. | `string` | `2` | no |
91-
| <a name="input_min_size"></a> [min\_size](#input\_min\_size) | Minimum instance count. | `string` | `2` | no |
92-
| <a name="input_name"></a> [name](#input\_name) | The ECS cluster name this will launching instances for. | `string` | n/a | yes |
93-
| <a name="input_security_group_ids"></a> [security\_group\_ids](#input\_security\_group\_ids) | A list of security group ids to attach to the autoscaling group | `list(string)` | `[]` | no |
94-
| <a name="input_subnet_ids"></a> [subnet\_ids](#input\_subnet\_ids) | A list of subnet IDs to launch resources in. | `list(string)` | n/a | yes |
95-
| <a name="input_use_AmazonEC2ContainerServiceforEC2Role_policy"></a> [use\_AmazonEC2ContainerServiceforEC2Role\_policy](#input\_use\_AmazonEC2ContainerServiceforEC2Role\_policy) | Attaches the AWS managed AmazonEC2ContainerServiceforEC2Role policy to the ECS instance role. | `string` | `true` | no |
96-
| <a name="input_vpc_id"></a> [vpc\_id](#input\_vpc\_id) | The id of the VPC to launch resources in. | `any` | n/a | yes |
86+
| desired\_capacity | Desired instance count. | `string` | `2` | no |
87+
| environment | Environment tag. | `string` | n/a | yes |
88+
| image\_id | Amazon ECS-Optimized AMI. | `string` | n/a | yes |
89+
| instance\_type | The instance type to use. | `string` | `"t2.micro"` | no |
90+
| max\_size | Maxmimum instance count. | `string` | `2` | no |
91+
| min\_size | Minimum instance count. | `string` | `2` | no |
92+
| name | The ECS cluster name this will launching instances for. | `string` | n/a | yes |
93+
| security\_group\_ids | A list of security group ids to attach to the autoscaling group | `list(string)` | `[]` | no |
94+
| subnet\_ids | A list of subnet IDs to launch resources in. | `list(string)` | n/a | yes |
95+
| use\_AmazonEC2ContainerServiceforEC2Role\_policy | Attaches the AWS managed AmazonEC2ContainerServiceforEC2Role policy to the ECS instance role. | `string` | `true` | no |
96+
| vpc\_id | The id of the VPC to launch resources in. | `any` | n/a | yes |
9797

9898
## Outputs
9999

100100
| Name | Description |
101101
|------|-------------|
102-
| <a name="output_ecs_cluster_arn"></a> [ecs\_cluster\_arn](#output\_ecs\_cluster\_arn) | The ARN of the ECS cluster. |
103-
| <a name="output_ecs_cluster_name"></a> [ecs\_cluster\_name](#output\_ecs\_cluster\_name) | The name of the ECS cluster. |
104-
| <a name="output_ecs_instance_role"></a> [ecs\_instance\_role](#output\_ecs\_instance\_role) | The name of the ECS instance role. |
102+
| ecs\_cluster\_arn | The ARN of the ECS cluster. |
103+
| ecs\_cluster\_name | The name of the ECS cluster. |
104+
| ecs\_instance\_role | The name of the ECS instance role. |
105105
<!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK -->
106106

107107
## Developer Setup

main.tf

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,4 +154,3 @@ resource "aws_autoscaling_group" "main" {
154154
propagate_at_launch = true
155155
}
156156
}
157-

outputs.tf

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,3 @@ output "ecs_instance_role" {
1212
description = "The name of the ECS instance role."
1313
value = aws_iam_role.ecs_instance_role.name
1414
}
15-

0 commit comments

Comments
 (0)