From dfd4a0e14ae53b57b6cd61c7c4cf401ae7a0f2b5 Mon Sep 17 00:00:00 2001 From: vit-corp Date: Thu, 26 Sep 2024 20:33:24 +0300 Subject: [PATCH] skip: update CI 284 --- auto_policy_testing/green/mysql/random.tf | 5 +++++ auto_policy_testing/red/mysql/random.tf | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/auto_policy_testing/green/mysql/random.tf b/auto_policy_testing/green/mysql/random.tf index ab0cbab6..04969bb7 100644 --- a/auto_policy_testing/green/mysql/random.tf +++ b/auto_policy_testing/green/mysql/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/mysql/random.tf b/auto_policy_testing/red/mysql/random.tf index 211a8b3f..b3c4245e 100644 --- a/auto_policy_testing/red/mysql/random.tf +++ b/auto_policy_testing/red/mysql/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" {