File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
terraform/aws/implementation/modules/rds Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ resource "aws_db_instance" "tefca-viewer-db" {
6
6
engine = var. engine_type
7
7
engine_version = var. engine_version
8
8
username = var. db_username
9
- password = random_string . setup_rds_password . result
9
+ password = random_password . setup_rds_password . result
10
10
db_subnet_group_name = aws_db_subnet_group. this . name
11
11
vpc_security_group_ids = [aws_security_group . ds_sg . id ]
12
12
parameter_group_name = aws_db_parameter_group. this . name
@@ -64,7 +64,7 @@ resource "aws_db_subnet_group" "this" {
64
64
65
65
# TODO: Update for Production to AWS Secrets Manager
66
66
# This resource's attribute(s) default value is true
67
- resource "random_string " "setup_rds_password" {
67
+ resource "random_password " "setup_rds_password" {
68
68
length = 13 # update as needed
69
69
70
70
# Character set that excludes problematic characters like quotes, backslashes, etc.
You can’t perform that action at this time.
0 commit comments