Skip to content

Commit

Permalink
skip: update CI 284
Browse files Browse the repository at this point in the history
  • Loading branch information
vit-corp committed Sep 26, 2024
1 parent f65ada8 commit dfd4a0e
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
5 changes: 5 additions & 0 deletions auto_policy_testing/green/mysql/random.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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" {
Expand Down
5 changes: 5 additions & 0 deletions auto_policy_testing/red/mysql/random.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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" {
Expand Down

0 comments on commit dfd4a0e

Please sign in to comment.