Terraform resource: random string
Jump to navigation
Jump to search
random_string
Examples[edit]
Official example:
resource "random_string" "random" { length = 16 special = true override_special = "/@£$" }
Exclude special characters:
resource "random_string" "yourrandom" { length = 8 special = false }
resource "random_string" "mysuffix" { length = 8 special = false } terraform plan random_string.mysuffix: Refreshing state... [id=7x929348]
Related[edit]
See also[edit]
Advertising: