-
Notifications
You must be signed in to change notification settings - Fork 175
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
9 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
2.2.0 | ||
2.3.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,35 +9,35 @@ variable "ingress_nginx_enabled" { | |
description = "Enable Ingress Nginx for Kubernetes Services (This option provision a Load Balancer)" | ||
} | ||
variable "ingress_load_balancer_shape" { | ||
default = "flexible" # Flexible, 10Mbps, 100Mbps, 400Mbps or 8000Mps | ||
default = "flexible" # Flexible, 10Mbps, 100Mbps, 400Mbps or 8000Mps | ||
description = "Shape that will be included on the Ingress annotation for the OCI Load Balancer creation" | ||
} | ||
variable "ingress_load_balancer_shape_flex_min" { | ||
default = "10" | ||
default = "10" | ||
description = "Enter the minimum size of the flexible shape." | ||
} | ||
variable "ingress_load_balancer_shape_flex_max" { | ||
default = "100" | ||
default = "100" | ||
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." | ||
} | ||
variable "ingress_hosts" { | ||
default = "" | ||
default = "" | ||
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" | ||
} | ||
variable "cert_manager_enabled" { | ||
default = true | ||
description = "Enable x509 Certificate Management" | ||
} | ||
variable "ingress_tls" { | ||
default = false | ||
default = false | ||
description = "If enabled, will generate SSL certificates to enable HTTPS for the ingress using the Certificate Issuer" | ||
} | ||
variable "ingress_cluster_issuer" { | ||
default = "letsencrypt-prod" | ||
default = "letsencrypt-prod" | ||
description = "Certificate issuer type. Currently supports the free Let's Encrypt and Self-Signed. Only *letsencrypt-prod* generates valid certificates" | ||
} | ||
variable "ingress_email_issuer" { | ||
default = "[email protected]" | ||
default = "[email protected]" | ||
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." | ||
} | ||
|
||
|