You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-2Lines changed: 4 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -67,7 +67,7 @@ Module managed by [Marcin Cuber](https://github.com/marcincuber) [LinkedIn](http
67
67
| name\_prefix | A prefix used for naming resources. | string | n/a | yes |
68
68
| private\_subnet\_ids | A list of private subnets inside the VPC | list(string) | n/a | yes |
69
69
| task\_container\_image | The image used to start a container. | string | n/a | yes |
70
-
| task\_container\_port |Port that the container exposes.| number | n/a | yes |
70
+
| task\_container\_port |The port number on the container that is bound to the user-specified or automatically assigned host port| number | n/a | yes |
71
71
| vpc\_id | The VPC ID. | string | n/a | yes |
72
72
| container\_name | Optional name for the container to be used instead of name_prefix. | string |`""`| no |
73
73
| deployment\_controller\_type | Type of deployment controller. Valid values: CODE_DEPLOY, ECS. | string |`"ECS"`| no |
@@ -76,6 +76,7 @@ Module managed by [Marcin Cuber](https://github.com/marcincuber) [LinkedIn](http
76
76
| desired\_count | The number of instances of the task definitions to place and keep running. | number |`"1"`| no |
77
77
| health\_check\_grace\_period\_seconds | Seconds to ignore failing load balancer health checks on newly instantiated tasks to prevent premature shutdown, up to 7200. Only valid for services configured to use load balancers. | number |`"300"`| no |
78
78
| log\_retention\_in\_days | Number of days the logs will be retained in CloudWatch. | number |`"30"`| no |
79
+
| propogate\_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 |`"TASK_DEFINITION"`| no |
79
80
| repository\_credentials | name or ARN of a secrets manager secret (arn:aws:secretsmanager:region:aws_account_id:secret:secret_name) | string |`""`| no |
80
81
| repository\_credentials\_kms\_key | key id, key ARN, alias name or alias ARN of the key that encrypted the repository credentials | string |`"alias/aws/secretsmanager"`| no |
81
82
| service\_registry\_arn | ARN of aws_service_discovery_service resource | string |`""`| no |
@@ -86,6 +87,7 @@ Module managed by [Marcin Cuber](https://github.com/marcincuber) [LinkedIn](http
86
87
| task\_container\_protocol | Protocol that the container exposes. | string |`"HTTP"`| no |
87
88
| task\_definition\_cpu | Amount of CPU to reserve for the task. | number |`"256"`| no |
88
89
| task\_definition\_memory | The soft limit (in MiB) of memory to reserve for the container. | number |`"512"`| no |
90
+
| task\_host\_port | The port number on the container instance to reserve for your container. | number |`"0"`| no |
89
91
90
92
## Outputs
91
93
@@ -104,4 +106,4 @@ Module managed by [Marcin Cuber](https://github.com/marcincuber) [LinkedIn](http
Copy file name to clipboardExpand all lines: examples/core/README.md
+3-1Lines changed: 3 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -19,7 +19,7 @@ terraform apply --auto-approve
19
19
| name\_prefix | A prefix used for naming resources. | string | n/a | yes |
20
20
| private\_subnet\_ids | A list of private subnets inside the VPC | list(string) | n/a | yes |
21
21
| task\_container\_image | The image used to start a container. | string | n/a | yes |
22
-
| task\_container\_port |Port that the container exposes.| number | n/a | yes |
22
+
| task\_container\_port |The port number on the container that is bound to the user-specified or automatically assigned host port| number | n/a | yes |
23
23
| vpc\_id | The VPC ID. | string | n/a | yes |
24
24
| container\_name | Optional name for the container to be used instead of name_prefix. | string |`""`| no |
25
25
| deployment\_controller\_type | Type of deployment controller. Valid values: CODE_DEPLOY, ECS. | string |`"ECS"`| no |
@@ -28,6 +28,7 @@ terraform apply --auto-approve
28
28
| desired\_count | The number of instances of the task definitions to place and keep running. | number |`"1"`| no |
29
29
| health\_check\_grace\_period\_seconds | Seconds to ignore failing load balancer health checks on newly instantiated tasks to prevent premature shutdown, up to 7200. Only valid for services configured to use load balancers. | number |`"300"`| no |
30
30
| log\_retention\_in\_days | Number of days the logs will be retained in CloudWatch. | number |`"30"`| no |
31
+
| propogate\_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 |`"TASK_DEFINITION"`| no |
31
32
| repository\_credentials | name or ARN of a secrets manager secret (arn:aws:secretsmanager:region:aws_account_id:secret:secret_name) | string |`""`| no |
32
33
| repository\_credentials\_kms\_key | key id, key ARN, alias name or alias ARN of the key that encrypted the repository credentials | string |`"alias/aws/secretsmanager"`| no |
33
34
| service\_registry\_arn | ARN of aws_service_discovery_service resource | string |`""`| no |
@@ -38,6 +39,7 @@ terraform apply --auto-approve
38
39
| task\_container\_protocol | Protocol that the container exposes. | string |`"HTTP"`| no |
39
40
| task\_definition\_cpu | Amount of CPU to reserve for the task. | number |`"256"`| no |
40
41
| task\_definition\_memory | The soft limit (in MiB) of memory to reserve for the container. | number |`"512"`| no |
42
+
| task\_host\_port | The port number on the container instance to reserve for your container. | number |`"0"`| no |
0 commit comments