Skip to content

Commit

Permalink
Merge pull request #4 from TUS-OSK/develop
Browse files Browse the repository at this point in the history
ecsクラスタの作成
  • Loading branch information
qq8244353 authored Nov 12, 2024
2 parents e0ff1a6 + 3b027aa commit a36c1a3
Showing 1 changed file with 8 additions and 19 deletions.
27 changes: 8 additions & 19 deletions terraform/ecs.tf
Original file line number Diff line number Diff line change
@@ -1,24 +1,13 @@
resource "aws_ecs_service" "mongo" {
name = "mongodb"
cluster = aws_ecs_cluster.foo.id
task_definition = aws_ecs_task_definition.mongo.arn
desired_count = 3
iam_role = aws_iam_role.foo.arn
depends_on = [aws_iam_role_policy.foo]
# ECSクラスタの作成
resource "aws_ecs_cluster" "this" {
name = var.ecs_cluster_name

ordered_placement_strategy {
type = "binpack"
field = "cpu"
setting {
name = "containerInsights"
value = "enabled"
}

load_balancer {
target_group_arn = aws_lb_target_group.foo.arn
container_name = "mongo"
container_port = 8080
}

placement_constraints {
type = "memberOf"
expression = "attribute:ecs.availability-zone in [us-west-2a, us-west-2b]"
tags = {
Name = var.ecs_cluster_name
}
}

0 comments on commit a36c1a3

Please sign in to comment.