diff --git a/auto_policy_testing/green/sql/random.tf b/auto_policy_testing/green/sql/random.tf index 211a8b3f..b3c4245e 100644 --- a/auto_policy_testing/green/sql/random.tf +++ b/auto_policy_testing/green/sql/random.tf @@ -2,6 +2,11 @@ resource "random_password" "this" { length = 13 special = true numeric = true + min_lower = 1 + min_numeric = 1 + min_special = 1 + min_upper = 1 + override_special = "_%@" } resource "random_string" "this" { diff --git a/auto_policy_testing/red/sql/random.tf b/auto_policy_testing/red/sql/random.tf index 211a8b3f..b3c4245e 100644 --- a/auto_policy_testing/red/sql/random.tf +++ b/auto_policy_testing/red/sql/random.tf @@ -2,6 +2,11 @@ resource "random_password" "this" { length = 13 special = true numeric = true + min_lower = 1 + min_numeric = 1 + min_special = 1 + min_upper = 1 + override_special = "_%@" } resource "random_string" "this" {