Skip to content

Commit ddfb831

Browse files
committed
Fix comet_ec2_alb var public_subnets type and update readme
1 parent 80ee4cb commit ddfb831

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

comet-infrastructure/modules/comet_ec2_alb/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
| Name | Description | Type | Default | Required |
3131
|------|-------------|------|---------|:--------:|
3232
| <a name="input_environment"></a> [environment](#input\_environment) | Deployment environment, i.e. dev/stage/prod, etc | `string` | n/a | yes |
33-
| <a name="input_public_subnets"></a> [public\_subnets](#input\_public\_subnets) | Subnets specified for ALB | `list(any)` | n/a | yes |
33+
| <a name="input_public_subnets"></a> [public\_subnets](#input\_public\_subnets) | Subnets specified for ALB | `list(string)` | n/a | yes |
3434
| <a name="input_ssl_certificate_arn"></a> [ssl\_certificate\_arn](#input\_ssl\_certificate\_arn) | ARN of the ACM certificate to use for the ALB | `string` | n/a | yes |
3535
| <a name="input_vpc_id"></a> [vpc\_id](#input\_vpc\_id) | ID of the VPC that will contain the provisioned resources | `string` | n/a | yes |
3636

comet-infrastructure/modules/comet_ec2_alb/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ variable "vpc_id" {
1010

1111
variable "public_subnets" {
1212
description = "Subnets specified for ALB"
13-
type = list(any)
13+
type = list(string)
1414
}
1515

1616
variable "ssl_certificate_arn" {

0 commit comments

Comments
 (0)