Skip to content
This repository was archived by the owner on Feb 11, 2022. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion examples/1_nic_with_new_vpc/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ resource "random_id" "id" {
resource "random_password" "password" {
length = 16
special = true
override_special = "_%@"
override_special = " #%*+,-./:=?@[]^_~"
}

#
Expand Down
6 changes: 3 additions & 3 deletions examples/2_nic_with_new_vpc/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ resource "random_id" "id" {
resource "random_password" "password" {
length = 16
special = true
override_special = "_%@"
override_special = " #%*+,-./:=?@[]^_~"
}

#
Expand Down Expand Up @@ -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
}

#
Expand Down
2 changes: 1 addition & 1 deletion examples/3_nic_with_new_vpc/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ resource "random_id" "id" {
resource "random_password" "password" {
length = 16
special = true
override_special = "_%@"
override_special = " #%*+,-./:=?@[]^_~"
}

#
Expand Down