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
It will be fine to have an ability to create ECS clusters conditionally, for example, by using create_ecs variable as this done for terraform-aws-ecs module.
Example of usage:
module"ecs-cluster" {
# insert the 4 required variables herecreate_ecs="${terraform.workspace=="default"?true:false}"source="azavea/ecs-cluster/aws"version="2.0.0"
}
The text was updated successfully, but these errors were encountered:
It will be fine to have an ability to create ECS clusters conditionally, for example, by using
create_ecs
variable as this done for terraform-aws-ecs module.Example of usage:
The text was updated successfully, but these errors were encountered: