DEV Community

leroykayanda
leroykayanda

Posted on • Edited on

3 3

Terraform module to create an ECS Fargate cluster

This module is used to set up an AWS ECS fargate cluster. It sets up an ECS cluster with 1 service.

Terraform registry

module "ecsModule" {
  source  = "leroykayanda/ecsModule/aws"
  version = "1.0.2"
  # insert the 21 required variables here
}
Enter fullscreen mode Exit fullscreen mode

To set up an ECS service within an existing cluster, use this module instead.

Terraform registry

module "ecsService" {
  source  = "leroykayanda/ecsService/aws"
  version = "1.0.0"
  # insert the 21 required variables here
}
Enter fullscreen mode Exit fullscreen mode

Top comments (0)

Billboard image

The Next Generation Developer Platform

Coherence is the first Platform-as-a-Service you can control. Unlike "black-box" platforms that are opinionated about the infra you can deploy, Coherence is powered by CNC, the open-source IaC framework, which offers limitless customization.

Learn more

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay