Minor fixes
- DNS implementation - Fixed missing mount in encrypted volumes - Improved chronograph.sh
This commit is contained in:
@@ -101,18 +101,21 @@ resource "kubernetes_ingress_v1" "wordpress_ingress" {
|
||||
}
|
||||
spec {
|
||||
tls {
|
||||
hosts = [local.wordpress_fqdn]
|
||||
hosts = local.wordpress_fqdns
|
||||
secret_name = "wordpress-le-tls"
|
||||
}
|
||||
rule {
|
||||
host = local.wordpress_fqdn
|
||||
http {
|
||||
path {
|
||||
backend {
|
||||
service {
|
||||
name = "http"
|
||||
port {
|
||||
number = 80
|
||||
dynamic "rule" {
|
||||
for_each = local.wordpress_fqdns
|
||||
content {
|
||||
host = rule.value
|
||||
http {
|
||||
path {
|
||||
backend {
|
||||
service {
|
||||
name = "http"
|
||||
port {
|
||||
number = 80
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user