Skip to content

Commit dd1ad85

Browse files
fix: type for the service connect config variable (#9)
1 parent 542e4b1 commit dd1ad85

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,15 +35,15 @@ No modules.
3535
| <a name="input_capacity_provider_strategy"></a> [capacity\_provider\_strategy](#input\_capacity\_provider\_strategy) | proper weights to associate to Fargate & Fargate spot | `map(number)` | `{}` | no |
3636
| <a name="input_desired_task_count"></a> [desired\_task\_count](#input\_desired\_task\_count) | ECS desired task count to be running | `number` | n/a | yes |
3737
| <a name="input_ecs_cluster_id"></a> [ecs\_cluster\_id](#input\_ecs\_cluster\_id) | ECS cluster id | `string` | n/a | yes |
38-
| <a name="input_enable_ecs_managed_tags"></a> [enable\_ecs\_managed\_tags](#input\_enable\_ecs\_managed\_tags) | Specifies whether to enable Amazon ECS managed tags for the tasks within the service. | `bool` | `false` | no |
38+
| <a name="input_enable_ecs_managed_tags"></a> [enable\_ecs\_managed\_tags](#input\_enable\_ecs\_managed\_tags) | Specifies whether to enable Amazon ECS managed tags for the tasks within the service. | `bool` | `true` | no |
3939
| <a name="input_health_check_grace_period_seconds"></a> [health\_check\_grace\_period\_seconds](#input\_health\_check\_grace\_period\_seconds) | Task warm up time before health checks in seconds | `number` | `0` | no |
4040
| <a name="input_load_balancer"></a> [load\_balancer](#input\_load\_balancer) | Load balancer config | `map(any)` | `{}` | no |
4141
| <a name="input_max_autoscaling_task_count"></a> [max\_autoscaling\_task\_count](#input\_max\_autoscaling\_task\_count) | Maximum task count in autoscaling | `number` | `5` | no |
4242
| <a name="input_min_autoscaling_task_count"></a> [min\_autoscaling\_task\_count](#input\_min\_autoscaling\_task\_count) | Minimum task count in autoscaling | `number` | `1` | no |
4343
| <a name="input_name"></a> [name](#input\_name) | ECS task definition name | `string` | n/a | yes |
44-
| <a name="input_propagate_tags"></a> [propagate\_tags](#input\_propagate\_tags) | Specifies whether to propagate the tags from the task definition or the service to the tasks. The valid values are SERVICE and TASK\_DEFINITION | `string` | n/a | yes |
44+
| <a name="input_propagate_tags"></a> [propagate\_tags](#input\_propagate\_tags) | Specifies whether to propagate the tags from the task definition or the service to the tasks. The valid values are SERVICE, TASK\_DEFINITION and NONE | `string` | `"TASK_DEFINITION"` | no |
4545
| <a name="input_security_group_ids"></a> [security\_group\_ids](#input\_security\_group\_ids) | ECS security group id | `list(any)` | n/a | yes |
46-
| <a name="input_service_connect_config"></a> [service\_connect\_config](#input\_service\_connect\_config) | Service connect configuration | `map(any)` | `{}` | no |
46+
| <a name="input_service_connect_config"></a> [service\_connect\_config](#input\_service\_connect\_config) | Service connect configuration | `any` | `{}` | no |
4747
| <a name="input_subnets"></a> [subnets](#input\_subnets) | VPC subnets id | `list(any)` | n/a | yes |
4848
| <a name="input_tags"></a> [tags](#input\_tags) | A mapping of tags to assign to all resources | `map(string)` | `{}` | no |
4949
| <a name="input_task_definition_arn"></a> [task\_definition\_arn](#input\_task\_definition\_arn) | ECS task definition arn | `string` | n/a | yes |

variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ variable "load_balancer" {
8888

8989
variable "service_connect_config" {
9090
description = "Service connect configuration"
91-
type = map(any)
91+
type = any
9292
default = {}
9393
}
9494

0 commit comments

Comments
 (0)