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
## Description
<!--- Describe your changes in detail -->
## Motivation and Context
<!--- Why is this change required? What problem does it solve? -->
<!--- If it fixes an open issue, please link to the issue here. -->
## Breaking Changes
<!-- Does this break backwards compatibility with the current major
version? -->
<!-- If so, please provide an explanation why it is necessary. -->
## How Has This Been Tested?
- [ ] I have updated at least one of the `examples/*` to demonstrate and
validate my change(s)
- [ ] I have tested and validated these changes using one or more of the
provided `examples/*` projects
<!--- Users should start with an existing example as its written, deploy
it, then check their changes against it -->
<!--- This will highlight breaking/disruptive changes. Once you have
checked, deploy your changes to verify -->
<!--- Please describe how you tested your changes -->
- [ ] I have executed `pre-commit run -a` on my pull request
<!--- Please see
https://github.com/antonbabenko/pre-commit-terraform#how-to-install for
how to install -->
---------
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: Joe Niland <joe@originalmind.com.au>
Co-authored-by: cloudpossebot <11232728+cloudpossebot@users.noreply.github.com>
Co-authored-by: Nuru <Nuru@users.noreply.github.com>
Co-authored-by: Max Lobur <max_lobur@outlook.com>
Co-authored-by: Yunchi Luo <mightyguava@gmail.com>
Co-authored-by: Jeremy White <jeremy.white@cloudposse.com>
Co-authored-by: Veronika Gnilitska <30597968+gberenice@users.noreply.github.com>
Co-authored-by: Lukas Deutz <5903157+lagerfeuer@users.noreply.github.com>
Co-authored-by: Kevin Mahoney <kevin@icecube.dog>
Co-authored-by: Michael Manganiello <adamantike@users.noreply.github.com>
Co-authored-by: Erik Osterman (CEO @ Cloud Posse) <erik@cloudposse.com>
Co-authored-by: Cloud Posse Bot (CI/CD) <bot@cloudposse.com>
Co-authored-by: max-lobur <max-lobur@users.noreply.github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: readme-action 📖 <actions@github.com>
Co-authored-by: Alex Kaplan <awkaplan@users.noreply.github.com>
Co-authored-by: Alex Kaplan <akaplan@akiliinteractive.com>
Co-authored-by: RoseSecurity <72598486+RoseSecurity@users.noreply.github.com>
Co-authored-by: Markiian Slipets <53615853+mslipets@users.noreply.github.com>
Co-authored-by: Dmitrij Nikitenko <dmitrij@nikitenko.lv>
Co-authored-by: Roman Kulaiev <kulayev.roman@gmail.com>
Copy file name to clipboardexpand all lines: variables.tf
+109-5
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@ variable "ecs_load_balancers" {
12
12
type=list(object({
13
13
container_name =string
14
14
container_port =number
15
-
elb_name =string
15
+
elb_name =optional(string)
16
16
target_group_arn =string
17
17
}))
18
18
description="A list of load balancer config objects for the ECS service; see [ecs_service#load_balancer](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/ecs_service#load_balancer) docs"
description="ECS automatically redistributes tasks within a service across Availability Zones (AZs) to mitigate the risk of impaired application availability due to underlying infrastructure failures and task lifecycle activities. The valid values are `ENABLED` and `DISABLED`."
error_message="The valid values are `ENABLED` and `DISABLED`."
287
+
}
288
+
}
289
+
279
290
variable"health_check_grace_period_seconds" {
280
291
type=number
281
292
description="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"
See `service_connect_configuration` docs https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/ecs_service#service_connect_configuration
0 commit comments