Skip to content

Commit

Permalink
Fix incorrect length in name generation of gcp.privilege-escalation.i…
Browse files Browse the repository at this point in the history
…mpersonate-service-accounts (closes #296) (#297)
  • Loading branch information
christophetd committed Jan 30, 2023
1 parent e1efb14 commit f969b77
Showing 1 changed file with 4 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,10 @@ locals {
}

resource "random_string" "suffix" {
count = local.num-service-accounts
length = 4
special = false
min_lower = 4
min_numeric = 4
count = local.num-service-accounts
length = 4
special = false
min_lower = 4
}

// Create N service accounts
Expand Down

0 comments on commit f969b77

Please sign in to comment.