From f4b3a420901ad7ec6e9ac23804cd99195ea0b07e Mon Sep 17 00:00:00 2001 From: Cody Green Date: Fri, 15 Nov 2019 11:22:30 -0600 Subject: [PATCH 1/2] update password policy on all examples --- examples/1_nic_with_new_vpc/main.tf | 4 ++-- examples/2_nic_with_new_vpc/main.tf | 6 +++--- examples/3_nic_with_new_vpc/main.tf | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/examples/1_nic_with_new_vpc/main.tf b/examples/1_nic_with_new_vpc/main.tf index 98a614e..bc48ceb 100644 --- a/examples/1_nic_with_new_vpc/main.tf +++ b/examples/1_nic_with_new_vpc/main.tf @@ -17,7 +17,7 @@ resource "random_id" "id" { resource "random_password" "password" { length = 16 special = true - override_special = "_%@" + override_special = " #%*+,-./:=?@[]^_~" } # @@ -128,7 +128,7 @@ module bigip { module.ssh_secure_sg.this_security_group_id, module.bigip_mgmt_secure_sg.this_security_group_id ] - vpc_mgmt_subnet_ids = module.vpc.public_subnets + vpc_public_subnet_ids = module.vpc.public_subnets } # diff --git a/examples/2_nic_with_new_vpc/main.tf b/examples/2_nic_with_new_vpc/main.tf index c927962..2012c6b 100644 --- a/examples/2_nic_with_new_vpc/main.tf +++ b/examples/2_nic_with_new_vpc/main.tf @@ -15,7 +15,7 @@ resource "random_id" "id" { resource "random_password" "password" { length = 16 special = true - override_special = "_%@" + override_special = " #%*+,-./:=?@[]^_~" } # @@ -127,8 +127,8 @@ module bigip { module.web_server_secure_sg.this_security_group_id ] - vpc_public_subnet_ids = module.vpc.public_subnets - vpc_mgmt_subnet_ids = module.vpc.database_subnets + vpc_public_subnet_ids = module.vpc.public_subnets + vpc_mgmt_subnet_ids = module.vpc.database_subnets } # diff --git a/examples/3_nic_with_new_vpc/main.tf b/examples/3_nic_with_new_vpc/main.tf index 681ce98..e380405 100644 --- a/examples/3_nic_with_new_vpc/main.tf +++ b/examples/3_nic_with_new_vpc/main.tf @@ -15,7 +15,7 @@ resource "random_id" "id" { resource "random_password" "password" { length = 16 special = true - override_special = "_%@" + override_special = " #%*+,-./:=?@[]^_~" } # From 91cc1132f82428235fddbd1da4c4f2a3bd0db102 Mon Sep 17 00:00:00 2001 From: Mark Menger Date: Tue, 19 Nov 2019 14:15:12 -0800 Subject: [PATCH 2/2] 1 nic requires only mgmt subnet ids --- examples/1_nic_with_new_vpc/main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/1_nic_with_new_vpc/main.tf b/examples/1_nic_with_new_vpc/main.tf index bc48ceb..3ad3fc9 100644 --- a/examples/1_nic_with_new_vpc/main.tf +++ b/examples/1_nic_with_new_vpc/main.tf @@ -128,7 +128,7 @@ module bigip { module.ssh_secure_sg.this_security_group_id, module.bigip_mgmt_secure_sg.this_security_group_id ] - vpc_public_subnet_ids = module.vpc.public_subnets + vpc_mgmt_subnet_ids = module.vpc.public_subnets } #