Skip to content

Commit e4dd979

Browse files
EXO-5: [NEW] add letsencrypt support 2/2
1 parent 2d09792 commit e4dd979

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

kubectl/manifest/main.tf

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ data "kubectl_path_documents" "documents-count" {
1313
exoscale_loadbalancer_id = ""
1414
exoscale_loadbalancer_service_instancepool_id = ""
1515
ssl_certificate = ""
16-
# namespace = ""
16+
email = ""
1717
}
1818
}
1919

@@ -23,7 +23,7 @@ data "kubectl_path_documents" "documents" {
2323
exoscale_loadbalancer_id = var.exoscale_loadbalancer_id
2424
exoscale_loadbalancer_service_instancepool_id = var.exoscale_loadbalancer_service_instancepool_id
2525
ssl_certificate = var.ssl_certificate
26-
# namespace = kubernetes_namespace.haproxy-controller.id
26+
email = var.email
2727
}
2828
}
2929

kubectl/manifest/variable.tf

+4-2
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,7 @@ variable "ssl_certificate" {
1313
type = string
1414
}
1515

16-
17-
//variable "time_sleep" {}
16+
variable "email" {
17+
description = "(Required) E-Mail address for Lets Encrypt."
18+
type = string
19+
}

0 commit comments

Comments
 (0)