From 3f75a92705a6cc18e1d213f1d249db2244396fc7 Mon Sep 17 00:00:00 2001 From: Frederic Descamps Date: Sun, 5 Sep 2021 09:18:21 +0200 Subject: [PATCH] Upgrade to 8.0.26 and add sensitive attribute to private key for Terraform Signed-off-by: Frederic Descamps --- README.md | 2 +- main.tf | 2 +- modules/joomla/variables.tf | 2 +- stack/output.tf | 1 + stack/schema.yaml | 4 ++-- 5 files changed, 6 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 7ae3259..fce67de 100644 --- a/README.md +++ b/README.md @@ -6,4 +6,4 @@ The same modules are used as Resource Manager Stack. The latest stack can be downloaded directly in the releases (the zip file) -[![Deploy to Oracle Cloud](https://oci-resourcemanager-plugin.plugins.oci.oraclecloud.com/latest/deploy-to-oracle-cloud.svg)](https://cloud.oracle.com/resourcemanager/stacks/create?zipUrl=https://github.com/lefred/oci-joomla-mds/releases/download/v1.1.0/stack_joomla_mds.zip) +[![Deploy to Oracle Cloud](https://oci-resourcemanager-plugin.plugins.oci.oraclecloud.com/latest/deploy-to-oracle-cloud.svg)](https://cloud.oracle.com/resourcemanager/stacks/create?zipUrl=https://github.com/lefred/oci-joomla-mds/releases/download/v1.2.0/stack_joomla_mds.zip) diff --git a/main.tf b/main.tf index f159e75..7ba7052 100644 --- a/main.tf +++ b/main.tf @@ -74,7 +74,7 @@ resource "oci_core_route_table" "public_route_table" { vcn_id = local.vcn_id display_name = "RouteTableForMySQLPublic" route_rules { - cidr_block = "0.0.0.0/0" + destination = "0.0.0.0/0" network_entity_id = local.internet_gateway_id } diff --git a/modules/joomla/variables.tf b/modules/joomla/variables.tf index e47dc1e..b5d479d 100644 --- a/modules/joomla/variables.tf +++ b/modules/joomla/variables.tf @@ -1,6 +1,6 @@ variable "mysql_version" { description = "The version of the Mysql Shell." - default = "8.0.25" + default = "8.0.26" } variable "compartment_ocid" { diff --git a/stack/output.tf b/stack/output.tf index 806207e..fdd06ad 100644 --- a/stack/output.tf +++ b/stack/output.tf @@ -16,4 +16,5 @@ output "mds_instance_ip" { output "ssh_private_key" { value = local.private_key_to_show + sensitive = true } diff --git a/stack/schema.yaml b/stack/schema.yaml index 950a112..c444b05 100755 --- a/stack/schema.yaml +++ b/stack/schema.yaml @@ -1,7 +1,7 @@ title: "Joomla on OCI with MDS" description: "Joomla on OCI with MySQL Database Service" -schemaVersion: 1.1.0 -version: "20210526" +schemaVersion: 1.2.0 +version: "20210905" locale: "en"