Skip to content

Commit

Permalink
Create main.tf
Browse files Browse the repository at this point in the history
  • Loading branch information
rpuserh authored Jan 4, 2023
1 parent 0cdf045 commit 289b121
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions main.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
variable "count" {
type = number
}

resource "random_password" "password" {
count = var.count

length = 16
special = true
override_special = "!#$%&*()-_=+[]{}<>:?"
}

0 comments on commit 289b121

Please sign in to comment.