Skip to content

Instantly share code, notes, and snippets.

@madagra
Last active January 1, 2021 18:04
Show Gist options
  • Save madagra/9f866511dcb5143a85f7c95bf5f90506 to your computer and use it in GitHub Desktop.
Save madagra/9f866511dcb5143a85f7c95bf5f90506 to your computer and use it in GitHub Desktop.
variable "cluster_name" {
description = "The ECS cluster to start the instances in"
type = string
default = "qubec-cluster"
}
module "ecs_cluster" {
source = "github.com/jetbrains-infra/terraform-aws-ecs-cluster?ref=v0.4.8"
cluster_name = var.cluster_name
spot = true
instance_types = {
"t3a.medium" = 1
}
target_capacity = 100
trusted_cidr_blocks = module.vpc.public_subnets_cidr_blocks
subnets_ids = module.vpc.public_subnets
tags = {
Stack = "dev"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment