From 1f1a56b42b9ac7d8e9dbb5f6a40d8a0c5ed7afa8 Mon Sep 17 00:00:00 2001 From: Tyson Miller <56799434+Tyson-miller@users.noreply.github.com> Date: Sat, 20 Jan 2024 15:12:57 -0800 Subject: [PATCH] add defaults to variable for testing purposes --- terraform-incubator/people-depot/dev/main.tf | 2 ++ 1 file changed, 2 insertions(+) diff --git a/terraform-incubator/people-depot/dev/main.tf b/terraform-incubator/people-depot/dev/main.tf index e3cd3ab..5142c71 100644 --- a/terraform-incubator/people-depot/dev/main.tf +++ b/terraform-incubator/people-depot/dev/main.tf @@ -15,10 +15,12 @@ provider "aws" { variable "root_db_password" { type = string description = "root database password" + default = "password" } variable "app_db_password" { type = string + default = "password" } module "dev" {