From c430d547092e710d513bd343939ecd5942c40866 Mon Sep 17 00:00:00 2001 From: Zachary Hill Date: Wed, 7 Aug 2024 15:08:21 -0400 Subject: [PATCH] switching the mgmt subnet to the public subnet --- modules/aws/vendor/velocloud/main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/aws/vendor/velocloud/main.tf b/modules/aws/vendor/velocloud/main.tf index 737d55fe..dc2bac38 100644 --- a/modules/aws/vendor/velocloud/main.tf +++ b/modules/aws/vendor/velocloud/main.tf @@ -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) })) }