Skip to content

Commit

Permalink
skip: update CI 283
Browse files Browse the repository at this point in the history
  • Loading branch information
vit-corp committed Sep 26, 2024
1 parent 2493650 commit f65ada8
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/sql/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/sql/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 f65ada8

Please sign in to comment.