Skip to content

Commit

Permalink
switching the mgmt subnet to the public subnet
Browse files Browse the repository at this point in the history
  • Loading branch information
zachreborn committed Aug 7, 2024
1 parent d13ea88 commit c430d54
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/aws/vendor/velocloud/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ resource "aws_network_interface" "mgmt_nic" {
description = var.mgmt_nic_description
private_ips = var.mgmt_ips == null ? null : [element(var.mgmt_ips, count.index)]
security_groups = [aws_security_group.sdwan_mgmt_sg.id]
subnet_id = element(var.mgmt_subnet_ids, count.index)
subnet_id = element(var.public_subnet_ids, count.index)
tags = merge(var.tags, ({ "Name" = format("%s%d_mgmt", var.instance_name_prefix, count.index + 1) }))
}

Expand Down

0 comments on commit c430d54

Please sign in to comment.