From 82212a7b1722adf1089fc0ea8f13b581b82cbd82 Mon Sep 17 00:00:00 2001 From: Adao Junior Date: Wed, 19 May 2021 23:50:54 -0500 Subject: [PATCH] complete: v2.3.0 --- deploy/complete/terraform/CHANGELOG.md | 2 +- deploy/complete/terraform/VERSION | 2 +- deploy/complete/terraform/mushop-variables.tf | 14 +++++++------- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/deploy/complete/terraform/CHANGELOG.md b/deploy/complete/terraform/CHANGELOG.md index 0255ed734..296f07a18 100644 --- a/deploy/complete/terraform/CHANGELOG.md +++ b/deploy/complete/terraform/CHANGELOG.md @@ -1,6 +1,6 @@ # CHANGELOG -2021-05-18 (v2.2.1) +2021-05-18 (v2.3.0) - Support for flexible Load Balancer annotations on Ingress-Nginx - Support for domain name (FQDN) for ingress diff --git a/deploy/complete/terraform/VERSION b/deploy/complete/terraform/VERSION index e3a4f1933..cc6612c36 100644 --- a/deploy/complete/terraform/VERSION +++ b/deploy/complete/terraform/VERSION @@ -1 +1 @@ -2.2.0 \ No newline at end of file +2.3.0 \ No newline at end of file diff --git a/deploy/complete/terraform/mushop-variables.tf b/deploy/complete/terraform/mushop-variables.tf index 1a8ddc930..c46b1cd90 100644 --- a/deploy/complete/terraform/mushop-variables.tf +++ b/deploy/complete/terraform/mushop-variables.tf @@ -9,19 +9,19 @@ 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" { @@ -29,15 +29,15 @@ variable "cert_manager_enabled" { 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 = "no-reply@mushop.ateam.cloud" + default = "no-reply@mushop.ateam.cloud" 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." }