From 7e0827db532883ac6039b98ea9f4fe426092cb31 Mon Sep 17 00:00:00 2001 From: Dave Gulli Date: Mon, 11 Sep 2023 20:33:08 +1000 Subject: [PATCH] re-ordered variables per lint error --- modules/net-vpc/variables.tf | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/modules/net-vpc/variables.tf b/modules/net-vpc/variables.tf index 78cf7a4c9..37e138a8f 100644 --- a/modules/net-vpc/variables.tf +++ b/modules/net-vpc/variables.tf @@ -227,8 +227,8 @@ variable "subnets" { nullable = false } -variable "subnets_proxy_only" { - description = "List of proxy-only subnets for Regional HTTPS or Internal HTTPS load balancers. Note: Only one proxy-only subnet for each VPC network in each region can be active." +variable "subnets_global_proxy_only" { + description = "List of proxy-only subnets for Cross-region Internal HTTPS load balancers. Note: Only one proxy-only subnet for each VPC network in each region can be active." type = list(object({ name = string ip_cidr_range = string @@ -240,8 +240,8 @@ variable "subnets_proxy_only" { nullable = false } -variable "subnets_global_proxy_only" { - description = "List of proxy-only subnets for Cross-region Internal HTTPS load balancers. Note: Only one proxy-only subnet for each VPC network in each region can be active." +variable "subnets_proxy_only" { + description = "List of proxy-only subnets for Regional HTTPS or Internal HTTPS load balancers. Note: Only one proxy-only subnet for each VPC network in each region can be active." type = list(object({ name = string ip_cidr_range = string