Skip to content

Commit

Permalink
adding var defaults to test plan
Browse files Browse the repository at this point in the history
  • Loading branch information
chelseybeck committed Jun 1, 2024
1 parent 141ff28 commit 8b9b181
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions terraform-incubator/people-depot/project/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -75,12 +75,15 @@ module "cognito" {
variable "root_db_password" {
type = string
description = "root database password"
default = ""
}

variable "app_db_password" {
type = string
type = string
default = ""
}

variable "container_image" {
type = string
type = string
default = ""
}

0 comments on commit 8b9b181

Please sign in to comment.