Skip to content

Commit

Permalink
PRMP-763 name change
Browse files Browse the repository at this point in the history
  • Loading branch information
NogaNHS committed Sep 13, 2024
1 parent 16b92c1 commit eedfbec
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions infrastructure/schedules.tf
Original file line number Diff line number Diff line change
Expand Up @@ -125,15 +125,15 @@ resource "aws_scheduler_schedule" "ods_weekly_update_ecs" {
schedule_expression = "cron(0 4 ? * SAT *)"

target {
arn = module.ndr-ods-update-fargate[0].ecs_cluster_arn
arn = module.ndr-ecs-fargate-ods-update[0].ecs_cluster_arn
role_arn = aws_iam_role.ods_weekly_update_ecs_execution[0].arn
ecs_parameters {
task_definition_arn = module.ndr-ods-update-fargate[0].task_definition_arn
task_definition_arn = module.ndr-ecs-fargate-ods-update[0].task_definition_arn
task_count = 1
launch_type = "FARGATE"
network_configuration {
assign_public_ip = false
security_groups = [module.ndr-ods-update-fargate[0].security_group_id]
security_groups = [module.ndr-ecs-fargate-ods-update[0].security_group_id]
subnets = [for subnet in module.ndr-vpc-ui.private_subnets : subnet]
}
}
Expand Down

0 comments on commit eedfbec

Please sign in to comment.