-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathlocals.tf
31 lines (24 loc) · 1.24 KB
/
locals.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
locals {
# Name of Batch service's security group used on the compute environment
batch_security_group_name = "${var.resource_prefix}batch-compute-environment-security-group${var.resource_suffix}"
# Prefix name of Batch compute environment
compute_env_prefix_name = "${var.resource_prefix}cpu${var.resource_suffix}"
# Name of Batch Queue.
# replace() ensures names that are composed of just prefix + suffix do not have duplicate dashes
batch_queue_name = replace("${var.resource_prefix}${var.resource_suffix}", "--", "-")
# Name of IAM role to create to manage ECS tasks
ecs_execution_role_name = "${var.resource_prefix}ecs-execution-role${var.resource_suffix}"
# Name of Batch service IAM role
batch_execution_role_name = "${var.resource_prefix}batch-execution-role${var.resource_suffix}"
# Name of ECS IAM role
ecs_instance_role_name = "${var.resource_prefix}ecs-iam-role${var.resource_suffix}"
enable_fargate_on_batch = var.batch_type == "fargate"
compute_type_map = {
"ec2" = "EC2"
"ec2_spot" = "SPOT"
"fargate" = "FARGATE"
"fargate_spot" = "FARGATE_SPOT"
}
compute_type = local.compute_type_map[var.batch_type]
is_spot = contains(["ec2_spot", "fargate_spot"], var.batch_type)
}