generated from hackforla/.github-hackforla-base-repo-template
-
-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ef35ca2
commit 533812c
Showing
9 changed files
with
574 additions
and
277 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
resource "aws_appautoscaling_target" "ecs_target" { | ||
max_capacity = 2 | ||
min_capacity = 1 | ||
resource_id = "service/incubator-prod/homeuniteus" | ||
scalable_dimension = "ecs:service:DesiredCount" | ||
service_namespace = "ecs" | ||
} | ||
|
||
resource "aws_appautoscaling_policy" "ecs_autoscale_memory" { | ||
name = "ecs_autoscale_memory" | ||
policy_type = "TargetTrackingScaling" | ||
resource_id = aws_appautoscaling_target.ecs_target.resource_id | ||
scalable_dimension = aws_appautoscaling_target.ecs_target.scalable_dimension | ||
service_namespace = aws_appautoscaling_target.ecs_target.service_namespace | ||
|
||
target_tracking_scaling_policy_configuration { | ||
predefined_metric_specification { | ||
predefined_metric_type = "ECSServiceAverageMemoryUtilization" | ||
} | ||
|
||
target_value = 80 | ||
} | ||
} | ||
|
||
resource "aws_appautoscaling_policy" "ecs_autoscale_cpu" { | ||
name = "ecs_autoscale_cpu" | ||
policy_type = "TargetTrackingScaling" | ||
resource_id = aws_appautoscaling_target.ecs_target.resource_id | ||
scalable_dimension = aws_appautoscaling_target.ecs_target.scalable_dimension | ||
service_namespace = aws_appautoscaling_target.ecs_target.service_namespace | ||
|
||
target_tracking_scaling_policy_configuration { | ||
predefined_metric_specification { | ||
predefined_metric_type = "ECSServiceAverageCPUUtilization" | ||
} | ||
|
||
target_value = 60 | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
resource "aws_acm_certificate" "domain" { | ||
domain_name = local.root_host_name | ||
validation_method = "DNS" | ||
subject_alternative_names = ["*.${local.root_host_name}"] | ||
|
||
lifecycle { | ||
create_before_destroy = true | ||
} | ||
} | ||
|
||
resource "aws_route53_record" "cert_validation" { | ||
for_each = { | ||
for dvo in aws_acm_certificate.domain.domain_validation_options : dvo.domain_name => { | ||
name = dvo.resource_record_name | ||
record = dvo.resource_record_value | ||
type = dvo.resource_record_type | ||
} | ||
} | ||
allow_overwrite = true | ||
name = each.value.name | ||
records = [each.value.record] | ||
ttl = 60 | ||
type = each.value.type | ||
zone_id = aws_route53_zone.original.zone_id | ||
} | ||
|
||
resource "aws_acm_certificate_validation" "domain" { | ||
certificate_arn = aws_acm_certificate.domain.arn | ||
validation_record_fqdns = [for record in aws_route53_record.cert_validation : record.fqdn] | ||
} | ||
|
||
resource "aws_lb_listener_certificate" "domain" { | ||
listener_arn = local.listener_arn | ||
certificate_arn = aws_acm_certificate_validation.domain.certificate_arn | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,98 @@ | ||
|
||
# aws_ecs_task_definition.task: | ||
resource "aws_ecs_task_definition" "homeuniteus" { | ||
container_definitions = jsonencode( | ||
[ | ||
{ | ||
cpu = 256 | ||
environment = [{ | ||
"name" = "APP_ENVIRONMENT", | ||
"value" = "DEV" | ||
}] | ||
essential = true | ||
image = "035866691871.dkr.ecr.us-west-2.amazonaws.com/homeuniteus:nginx-20241006.7" | ||
logConfiguration = { | ||
logDriver = "awslogs" | ||
options = { | ||
awslogs-group = "ecs/homeuniteus" | ||
awslogs-region = "us-west-2" | ||
awslogs-stream-prefix = "app" | ||
} | ||
} | ||
memoryReservation = 512 | ||
mountPoints = [] | ||
name = "homeuniteus" | ||
portMappings = [ | ||
{ | ||
containerPort = 80 | ||
protocol = "tcp" | ||
}, | ||
] | ||
readonlyRootFilesystem = false | ||
volumesFrom = [] | ||
}, | ||
] | ||
) | ||
cpu = "256" | ||
execution_role_arn = "arn:aws:iam::035866691871:role/incubator-prod-ecs-task-role" | ||
family = "homeuniteus" | ||
memory = "512" | ||
network_mode = "awsvpc" | ||
requires_compatibilities = [ | ||
"FARGATE", | ||
] | ||
task_role_arn = "arn:aws:iam::035866691871:role/incubator-prod-ecs-task-role" | ||
} | ||
|
||
resource "aws_security_group" "homeuniteus" { | ||
name = "ecs_fargate_${local.app_name}" | ||
description = "Allow TLS inbound traffic" | ||
vpc_id = local.vpc_id | ||
|
||
ingress { | ||
description = "All Internal traffic" | ||
from_port = 0 | ||
to_port = 65535 | ||
protocol = "tcp" | ||
cidr_blocks = [data.aws_vpc.incubator.cidr_block] | ||
} | ||
|
||
egress { | ||
from_port = 0 | ||
to_port = 0 | ||
protocol = "-1" | ||
cidr_blocks = ["0.0.0.0/0"] | ||
} | ||
|
||
tags = { Name = "ecs_container_instance_${local.app_name}" } | ||
} | ||
|
||
resource "aws_ecs_service" "homeuniteus" { | ||
name = "homeuniteus" | ||
cluster = "arn:aws:ecs:us-west-2:035866691871:cluster/incubator-prod" | ||
enable_execute_command = true | ||
task_definition = aws_ecs_task_definition.homeuniteus.arn | ||
launch_type = "FARGATE" | ||
desired_count = 1 | ||
|
||
network_configuration { | ||
subnets = [ | ||
"subnet-03202f3bf9a24c1a5", | ||
"subnet-08c26edd1afc2b9d7", | ||
] | ||
security_groups = [aws_security_group.homeuniteus.id] | ||
assign_public_ip = true | ||
} | ||
|
||
load_balancer { | ||
container_name = local.app_name | ||
container_port = 80 | ||
target_group_arn = aws_lb_target_group.homeuniteus.arn | ||
} | ||
|
||
depends_on = [aws_lb_target_group.homeuniteus, aws_lb_listener_rule.homeuniteus] | ||
|
||
lifecycle { | ||
ignore_changes = [desired_count] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
resource "aws_lb_target_group" "homeuniteus" { | ||
target_type = "ip" | ||
name = local.app_name | ||
port = 80 | ||
protocol = "HTTP" | ||
vpc_id = local.vpc_id | ||
deregistration_delay = 5 | ||
stickiness { | ||
type = "lb_cookie" | ||
} | ||
health_check { | ||
path = "/" | ||
interval = 15 | ||
healthy_threshold = 3 | ||
unhealthy_threshold = 2 | ||
matcher = "200,302" | ||
} | ||
|
||
lifecycle { | ||
create_before_destroy = true | ||
} | ||
} | ||
|
||
resource "aws_lb_listener_rule" "homeuniteus" { | ||
listener_arn = local.listener_arn | ||
|
||
action { | ||
type = "forward" | ||
target_group_arn = aws_lb_target_group.homeuniteus.arn | ||
} | ||
|
||
condition { | ||
host_header { | ||
values = local.host_names | ||
} | ||
} | ||
|
||
# Path Pattern condition | ||
# dynamic "condition" { | ||
# for_each = length(var.path_patterns) == 0 ? [] : [var.path_patterns] | ||
|
||
# content { | ||
# path_pattern { | ||
# values = var.path_patterns | ||
# } | ||
# } | ||
# } | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
|
||
data "aws_iam_user" "appadmin" { | ||
user_name = "tyler.thome" | ||
} | ||
|
||
resource "aws_iam_policy" "homeuniteus_manage_ecr" { | ||
name = "ManageHomeUniteUsECR" | ||
description = "Manage the homeuniteus ECR" | ||
policy = jsonencode({ | ||
Version = "2012-10-17", | ||
Statement = [ | ||
{ | ||
Sid = "ListImagesInRepository", | ||
Effect = "Allow", | ||
Action = [ | ||
"ecr:ListImages" | ||
], | ||
Resource = aws_ecr_repository.this.arn | ||
}, | ||
{ | ||
"Sid": "ViewAndUpdateAccessKeys", | ||
"Effect": "Allow", | ||
"Action": [ | ||
"iam:UpdateAccessKey", | ||
"iam:CreateAccessKey", | ||
"iam:ListAccessKeys" | ||
], | ||
"Resource": data.aws_iam_user.appadmin.arn | ||
}, | ||
{ | ||
Sid = "GetAuthorizationToken", | ||
Effect = "Allow", | ||
Action = [ | ||
"ecr:GetAuthorizationToken" | ||
], | ||
Resource = "*" | ||
}, | ||
{ | ||
Sid = "ManageRepositoryContents", | ||
Effect = "Allow", | ||
Action = [ | ||
"ecr:BatchCheckLayerAvailability", | ||
"ecr:GetDownloadUrlForLayer", | ||
"ecr:GetRepositoryPolicy", | ||
"ecr:DescribeRepositories", | ||
"ecr:ListImages", | ||
"ecr:DescribeImages", | ||
"ecr:BatchGetImage", | ||
"ecr:InitiateLayerUpload", | ||
"ecr:UploadLayerPart", | ||
"ecr:CompleteLayerUpload", | ||
"ecr:PutImage" | ||
], | ||
Resource = aws_ecr_repository.this.arn | ||
} | ||
# , | ||
# { | ||
# Sid = "ShellEcsContainerTask", | ||
# Effect = "Allow", | ||
# Action = [ | ||
# "ecs:ExecuteCommand", | ||
# ], | ||
# Resource = "arn:aws:ecs:us-west-2:035866691871:cluster/incubator-prod" | ||
# }, | ||
# { | ||
# Sid = "ShellEcsContainer", | ||
# Effect = "Allow", | ||
# Action = [ | ||
# "ecs:ExecuteCommand", | ||
# ], | ||
# Resource = "arn:aws:ecs:us-west-2:035866691871:task/incubator-prod/48f95a3b35de4198a637827d6b020c37" | ||
# } | ||
] | ||
}) | ||
} | ||
|
||
# Attaching a policy to the role | ||
resource "aws_iam_user_policy_attachment" "homeuniteus_manage_ecr_tyler" { | ||
user = data.aws_iam_user.appadmin.user_name | ||
policy_arn = aws_iam_policy.homeuniteus_manage_ecr.arn | ||
} |
Oops, something went wrong.