You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description="Enter the minimum size of the flexible shape."
51
62
}
52
63
variable"ingress_load_balancer_shape_flex_max" {
53
-
default="100"# From 10 to 8000. Cannot be lower than flex_min
64
+
default="100"# From 10 to 8000. Cannot be lower than ingress_load_balancer_shape_flex_min
54
65
description="Enter the maximum size of the flexible shape (Should be bigger than minimum size). The maximum service limit is set by your tenancy limits."
55
66
}
67
+
## Ingresses
68
+
variable"ingress_hosts" {
69
+
default=""
70
+
description="Enter a valid full qualified domain name (FQDN). You will need to map the domain name to the EXTERNAL-IP address on your DNS provider (DNS Registry type - A). If you have multiple domain names, include separated by comma. e.g.: mushop.example.com,catshop.com"
71
+
}
72
+
variable"ingress_hosts_include_nip_io" {
73
+
default=true
74
+
description="Include app_name.HEXXX.nip.io on the ingress hosts. e.g.: mushop.HEXXX.nip.io"
75
+
}
76
+
variable"nip_io_domain" {
77
+
default="nip.io"
78
+
description="Dynamic wildcard DNS for the application hostname. Should support hex notation. e.g.: nip.io"
79
+
}
80
+
variable"ingress_tls" {
81
+
default=false
82
+
description="If enabled, will generate SSL certificates to enable HTTPS for the ingress using the Certificate Issuer"
83
+
}
84
+
variable"ingress_cluster_issuer" {
85
+
default="letsencrypt-prod"
86
+
description="Certificate issuer type. Currently supports the free Let's Encrypt and Self-Signed. Only *letsencrypt-prod* generates valid certificates"
87
+
}
88
+
variable"ingress_email_issuer" {
89
+
default="no-reply@example.cloud"
90
+
description="You must replace this email address with your own. The certificate provider will use this to contact you about expiring certificates, and issues related to your account."
0 commit comments