Skip to content
This repository was archived by the owner on Feb 11, 2022. It is now read-only.

Commit a531445

Browse files
authored
Merge pull request #40 from f5devcentral/passwd_policy
password policy and 1-nic fixes #39 fixes #37
2 parents 2431cb8 + 91cc113 commit a531445

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

examples/1_nic_with_new_vpc/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ resource "random_id" "id" {
1717
resource "random_password" "password" {
1818
length = 16
1919
special = true
20-
override_special = "_%@"
20+
override_special = " #%*+,-./:=?@[]^_~"
2121
}
2222

2323
#

examples/2_nic_with_new_vpc/main.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ resource "random_id" "id" {
1515
resource "random_password" "password" {
1616
length = 16
1717
special = true
18-
override_special = "_%@"
18+
override_special = " #%*+,-./:=?@[]^_~"
1919
}
2020

2121
#
@@ -127,8 +127,8 @@ module bigip {
127127
module.web_server_secure_sg.this_security_group_id
128128
]
129129

130-
vpc_public_subnet_ids = module.vpc.public_subnets
131-
vpc_mgmt_subnet_ids = module.vpc.database_subnets
130+
vpc_public_subnet_ids = module.vpc.public_subnets
131+
vpc_mgmt_subnet_ids = module.vpc.database_subnets
132132
}
133133

134134
#

examples/3_nic_with_new_vpc/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ resource "random_id" "id" {
1515
resource "random_password" "password" {
1616
length = 16
1717
special = true
18-
override_special = "_%@"
18+
override_special = " #%*+,-./:=?@[]^_~"
1919
}
2020

2121
#

0 commit comments

Comments
 (0)