From bedab3cfb5644db09ffb2978cfe7e1ea88cfea83 Mon Sep 17 00:00:00 2001 From: Manuel Romero Date: Thu, 19 Mar 2020 17:27:44 +0100 Subject: [PATCH] remove all % from random password --- vm-centos/main.tf | 2 +- vm-qdc/main.tf | 2 +- vm-ubuntu/main.tf | 2 +- vm-win/main.tf | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/vm-centos/main.tf b/vm-centos/main.tf index db01504..c2d350f 100644 --- a/vm-centos/main.tf +++ b/vm-centos/main.tf @@ -10,7 +10,7 @@ resource "random_id" "randomMachineId" { resource "random_password" "password" { length = 16 special = true - override_special = "_%@" + override_special = "_!@" upper = true lower = true min_lower = 2 diff --git a/vm-qdc/main.tf b/vm-qdc/main.tf index c2064a8..ecf1108 100644 --- a/vm-qdc/main.tf +++ b/vm-qdc/main.tf @@ -10,7 +10,7 @@ resource "random_id" "randomMachineId" { resource "random_password" "password" { length = 16 special = true - override_special = "_%@" + override_special = "_!@" upper = true lower = true min_lower = 2 diff --git a/vm-ubuntu/main.tf b/vm-ubuntu/main.tf index a8161e1..70e5842 100644 --- a/vm-ubuntu/main.tf +++ b/vm-ubuntu/main.tf @@ -10,7 +10,7 @@ resource "random_id" "randomMachineId" { resource "random_password" "password" { length = 16 special = true - override_special = "_%@" + override_special = "_!@" upper = true lower = true min_lower = 2 diff --git a/vm-win/main.tf b/vm-win/main.tf index 6aef237..a12155a 100644 --- a/vm-win/main.tf +++ b/vm-win/main.tf @@ -10,7 +10,7 @@ resource "random_id" "randomMachineId" { resource "random_password" "password" { length = 16 special = true - override_special = "_%@" + override_special = "_!@" upper = true lower = true min_lower = 2