terraform-provider-random icon indicating copy to clipboard operation
terraform-provider-random copied to clipboard

start with lowercase

Open farrukh90 opened this issue 3 years ago • 1 comments

Hi there,

Is there anyway we could add a feature where it creates a password with lowerletter in the beginning? Maybe add an option start_with_lower_letter = true

Because, we are using lower letter with numbers and some providers require the password or ID to start with lower letter. An example is

resource "google_project" "project" { name = "testproject" project_id = random_password.password.result }

Google project does not allow IDs that start with number

farrukh90 avatar Mar 14 '21 14:03 farrukh90

You'd probably to add all of them to be complete

  • start_with_lower
  • start_with_upper
  • start_with_special
  • start_with_numeric or start_with_number

nitrocode avatar Aug 02 '21 12:08 nitrocode