Skip to content

Commit

Permalink
fix(random-password): fixed random password generation option
Browse files Browse the repository at this point in the history
fix(random-password): fixed random password generation option
  • Loading branch information
shamimice03 authored Sep 5, 2023
2 parents 4894cc4 + 0ef4951 commit 3b5d6af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ resource "aws_db_subnet_group" "db_subnet_group" {
resource "random_password" "db_master_password" {
count = var.db_master_password == null ? 1 : 0
length = var.random_password_length
special = true
special = false
}

resource "aws_db_instance" "this" {
Expand Down

0 comments on commit 3b5d6af

Please sign in to comment.