From dab03d2cea6f26d108b5fa50209e237b133c7dce Mon Sep 17 00:00:00 2001 From: Maxime Noel Date: Thu, 10 Oct 2024 13:14:08 +1300 Subject: [PATCH] Add default username and password. --- modules/proxy/variables.tf | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/proxy/variables.tf b/modules/proxy/variables.tf index 99454b999..d627d1bc0 100644 --- a/modules/proxy/variables.tf +++ b/modules/proxy/variables.tf @@ -17,6 +17,8 @@ variable "server_configuration" { description = "use module..configuration, see README_ADVANCED.md" default = { hostnames = [] + username = "admin" + password = "admin" } }