diff --git a/examples/complete/main.tf b/examples/complete/main.tf index f263ff1..427b367 100644 --- a/examples/complete/main.tf +++ b/examples/complete/main.tf @@ -35,7 +35,7 @@ resource "random_password" "jenkins_password" { } module "jenkins_dev" { - source = "../../modules/terraform-jenkins" # Adjust the path as needed + source = "../../" # Adjust the path as needed name = "jenkins-dev" repository = "https://charts.jenkins.io" @@ -52,7 +52,6 @@ module "jenkins_dev" { admin_password = random_password.jenkins_password.result }) ], - var.values ) timeout = 600 diff --git a/variables.tf b/variables.tf index 781fe7d..b910d26 100644 --- a/variables.tf +++ b/variables.tf @@ -75,4 +75,5 @@ variable "jenkins_admin_password" { description = "The admin password for Jenkins." type = string sensitive = true + default = "" }