Skip to content

Commit

Permalink
Initial Commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Richard-Barrett committed Oct 29, 2024
1 parent f17720e commit 20feb8b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
3 changes: 1 addition & 2 deletions examples/complete/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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

Check failure on line 38 in examples/complete/main.tf

View workflow job for this annotation

GitHub Actions / Validate Terraform module

Invalid registry module source address

name = "jenkins-dev"
repository = "https://charts.jenkins.io"
Expand All @@ -52,7 +52,6 @@ module "jenkins_dev" {
admin_password = random_password.jenkins_password.result
})
],
var.values
)

timeout = 600
Expand Down
1 change: 1 addition & 0 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -75,4 +75,5 @@ variable "jenkins_admin_password" {
description = "The admin password for Jenkins."
type = string
sensitive = true
default = ""
}

0 comments on commit 20feb8b

Please sign in to comment.