Skip to content

Commit f22fa1e

Browse files
author
root
committed
Fix empty default values
1 parent 81096d0 commit f22fa1e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

variables.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,13 +54,13 @@ variable "aurora_admin_username" {
5454
description = "Aurora DB PostgreSQL - Username"
5555
type = string
5656
sensitive = true
57-
default = ""
57+
default = "admin_user"
5858
}
5959

6060
variable "aurora_admin_password" {
6161
description = "Aurora DB PostgreSQL - Password"
6262
type = string
6363
sensitive = true
64-
default = ""
64+
default = "admin_pass"
6565
}
6666

0 commit comments

Comments
 (0)