Reputation: 13
I am calling a root module via child module as follows:
child module - main.tf
module "create_network_lb" {
source = "../../modules/lb_test"
for_each = var.target_groups
name = each.key
tg_name = each.value.tg_name
tg_backend_port = each.value.tg_backend_port
tg_backend_protocol = each.value.tg_backend_protocol
tg_hc_port = each.value.tg_hc_port
tg_hc_protocol = each.value.tg_hc_protocol
tg_htl_port = each.value.tg_htl_port
tg_htl_protocol = each.value.tg_htl_protocol
tg_htl_action = lookup(each.value, "tg_htl_action", "forward")
subnets = tolist(data.aws_subnet_ids.private_compute[0].ids)
vpc_id = sort(data.aws_vpcs.platform_private_vpc.ids)[0]
}
child module - vars.tf
variable "target_groups" {
description = "A list of maps containing key/value pairs that define the target groups to be created. Order of these maps is important and the index of these are to be referenced in listener definitions. Required key/values: name, backend_protocol, backend_port"
type = map
default = {
lb-1 = {
tg_name = "test1"
tg_backend_protocol = "TCP"
tg_backend_port = "80"
tg_target_type = "instance"
tg_deregistration_delay = "180"
tg_hc_healthy_threshold = 3
tg_hc_interval = 30
tg_hc_port = 80
tg_hc_protocol = "TCP"
tg_hc_unhealthy_threshold = 3
tg_htl_port = "80"
tg_htl_protocol = "TCP"
}
lb-2 = {
tg_name = "test2"
tg_backend_protocol = "TCP"
tg_backend_port = "8080"
tg_target_type = "instance"
tg_deregistration_delay = "180"
tg_hc_healthy_threshold = 3
tg_hc_interval = 30
tg_hc_port = 8080
tg_hc_protocol = "TCP"
tg_hc_unhealthy_threshold = 3
tg_htl_port = "80"
tg_htl_protocol = "TCP"
}
}
}
root module - main.tf
resource "aws_lb_target_group" "main" {
name = var.tg_name
vpc_id = var.vpc_id
port = var.tg_backend_port
protocol = var.tg_backend_protocol
depends_on = [aws_lb.default]
lifecycle {
create_before_destroy = true
}
}
resource "aws_lb_listener" "frontend_http_tcp" {
load_balancer_arn = aws_lb.default.arn
port = var.tg_htl_port
protocol = var.tg_htl_protocol
default_action {
type = var.tg_htl_action
target_group_arn = aws_lb_target_group.main.arn
}
}
root module - outputs.tf
output "target_group_arns" {
description = "ARNs of the target groups. Useful for passing to your Auto Scaling group."
value = aws_lb_target_group.main.arn
}
Inside the child module, an additional module is called to create an Auto Scaling Group
module "create_autoscaling_group" {
source = "../../modules/cloudformation_stack_autoscaling"
template_name = "launch-template"
cf_stack_name = "stack"
autoscaling_group_name = "asg"
instance_type = var.vm_type
block_device_mappings = var.block_device_mappings
image_id = data.aws_ami.centos_ami.image_id
vpc_security_group_ids = concat(data.aws_security_groups.security_group_ids.ids, [module.create_security_group.id])
user_data_base64 = data.template_cloudinit_config.config.rendered
iam_instance_profile_name = var.iam_instance_profile_name
volume_tags = merge(local.vmss_tags,{"fds:cloudformation:stack-name"=local.stack_tag})
ec2_tags = var.vmss_tags
subnet_ids = tolist(data.aws_subnet_ids.private_compute[0].ids)
max_size = var.vm_count != 0 ? var.vm_count : var.max_size
min_size = var.vm_count != 0 ? var.vm_count : var.min_size
desired_capacity = var.vm_count != 0 ? var.vm_count : var.desired_capacity
health_check_type = var.health_check_type
health_check_grace_period = var.health_check_grace_period
target_group_arns = module.create_network_lb[*].target_group_arns
Notice the variable, 'target_group_arns'. Here I need the arn of all target groups created by the call to the 'create_network_lb' module, so that all LBs and its associated targets groups are managed by the 1 Auto Scaling Group.
From what I read, when using a for_each, as I did with the 'create_network_lb' module call, I cannot use splat expressions. I tried using list comprehension but must be doing it wrong. Any help here would be appreciated.
Upvotes: 1
Views: 3068
Reputation: 238081
Your module create_network_lb
will be a map, not list. Thus you should be able to reference all target_group_arns
as:
target_group_arns = values(module.create_network_lb)[*].target_group_arns
Upvotes: 2