Compare commits

..

No commits in common. "2461e9754157d84e216edf0bf50c1e9292393b0f" and "37407f72c2528979fafcc6993be5a183ee7283d2" have entirely different histories.

2 changed files with 7 additions and 5 deletions

@ -1 +1 @@
Subproject commit 720b2227e91b33518a0ad12011cb9235f9a23ee1 Subproject commit 5ceb5aa6820075bb78ab22477bf85b2ffa23010b

View file

@ -1,3 +1,4 @@
module "portainer" { module "portainer" {
#source = "github.com/matthewbaggett/terraform_modules//products/portainer/ui" #source = "github.com/matthewbaggett/terraform_modules//products/portainer/ui"
source = "./lib/grey.ooo/products/portainer/ui" source = "./lib/grey.ooo/products/portainer/ui"
@ -5,10 +6,11 @@ module "portainer" {
placement_constraints = ["node.role == manager"] placement_constraints = ["node.role == manager"]
networks = [module.traefik.docker_network] networks = [module.traefik.docker_network]
traefik = { traefik = {
domain = "portainer.${var.base_domain}", domain = "portainer.${var.base_domain}",
port = 9000, port = 9000,
ssl = true, ssl = true,
non-ssl = true non-ssl = true
basic-auth-users = ["techinc"]
} }
} }