From aa3230618ae0b43f095c6f968bf2b3e4d2aacc25 Mon Sep 17 00:00:00 2001 From: Dan Kelly Date: Mon, 16 Nov 2020 11:08:39 +0000 Subject: [PATCH] increase length to 24 with special chars --- main.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.tf b/main.tf index 1f0a1e5..49c3ed1 100644 --- a/main.tf +++ b/main.tf @@ -16,8 +16,8 @@ locals { resource "random_password" "master_password" { count = var.create_cluster ? 1 : 0 - length = 10 - special = false + length = 24 + special = true } resource "aws_db_subnet_group" "this" {