Skip to content

Commit

Permalink
Optional SSL
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewbaggett committed Dec 5, 2024
1 parent 18a48ea commit cfc4765
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion products/minio/inputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ variable "traefik" {
type = object({
domain = string
port = optional(number)
ssl = optional(bool)
ssl = optional(bool)
})
description = "Whether to enable traefik for the service."
}
Expand Down
1 change: 1 addition & 0 deletions products/traefik/hello.tf
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ module "traefik_hello" {
traefik = {
domain = var.hello_service_domain
port = 80
ssl = var.ssl_enable
}
}
output "hello_service" {
Expand Down

0 comments on commit cfc4765

Please sign in to comment.