diff --git a/.github/workflows/dsf_poc_cli_azure.yml b/.github/workflows/dsf_poc_cli_azure.yml index ee6dba30d..a3fc8a30f 100644 --- a/.github/workflows/dsf_poc_cli_azure.yml +++ b/.github/workflows/dsf_poc_cli_azure.yml @@ -155,7 +155,7 @@ jobs: az_resource_group = "dsf-rg" az_storage_account = "dsfinstallation" az_container = "sonar" - az_blob = "jsonar-4.15.0.10.0.tar.gz" + az_blob = "jsonar-4.16.0.10.0.tar.gz" } dam_agent_installation_location = { az_resource_group = "dsf-rg" diff --git a/.github/workflows/sonar_upgrade.yml b/.github/workflows/sonar_upgrade.yml index 8e43ad6ee..6648073ac 100644 --- a/.github/workflows/sonar_upgrade.yml +++ b/.github/workflows/sonar_upgrade.yml @@ -56,11 +56,11 @@ jobs: DEPLOYMENT_EXAMPLE_DIR: ./examples/aws/poc/dsf_deployment UPGRADE_EXAMPLE_DIR: ./examples/aws/sonar_upgrade AWS_REGION: eu-west-2 - SONAR_TARGET_VERSION: 4.15.0.10.0 + SONAR_TARGET_VERSION: 4.16.0.10.0 TF_VAR_enable_sonar: ${{ matrix.enable_sonar }} TF_VAR_enable_dam: ${{ matrix.enable_dam }} TF_VAR_enable_dra: ${{ matrix.enable_dra }} - TF_VAR_sonar_version: 4.13.0.10 + TF_VAR_sonar_version: 4.14.0.10 TF_VAR_hub_hadr: ${{ matrix.hub_hadr }} TF_VAR_agentless_gw_hadr: ${{ matrix.agentless_gw_hadr }} TF_VAR_simulation_db_types_for_agentless: ${{ matrix.simulation_db_types_for_agentless }} diff --git a/README.md b/README.md index ca704842e..41b0b6a07 100644 --- a/README.md +++ b/README.md @@ -110,7 +110,7 @@ This guide references the following information and links, some of which are ava - Sonar v4.14 + Sonar v4.16 DAM v14.15 @@ -691,7 +691,7 @@ This includes the following version of the DSF sub-products: - Sonar4.14.0.104.9 and up + Sonar4.16.0.104.9 and up Restrictions on modules may apply diff --git a/examples/aws/installation/dsf_single_account_deployment/variables.tf b/examples/aws/installation/dsf_single_account_deployment/variables.tf index 032c245f3..ecd182b07 100644 --- a/examples/aws/installation/dsf_single_account_deployment/variables.tf +++ b/examples/aws/installation/dsf_single_account_deployment/variables.tf @@ -233,7 +233,7 @@ variable "dra_analytics_key_pair" { variable "sonar_version" { type = string - default = "4.15" + default = "4.16" description = "The Sonar version to install. Supported versions are: 4.11 and up. Both long and short version formats are supported, for example, 4.12.0.10 or 4.12. The short format maps to the latest patch." validation { condition = !startswith(var.sonar_version, "4.9.") && !startswith(var.sonar_version, "4.10.") diff --git a/examples/aws/installation/sonar_multi_account_deployment/variables.tf b/examples/aws/installation/sonar_multi_account_deployment/variables.tf index b7525464a..a959e87f6 100644 --- a/examples/aws/installation/sonar_multi_account_deployment/variables.tf +++ b/examples/aws/installation/sonar_multi_account_deployment/variables.tf @@ -6,7 +6,7 @@ variable "deployment_name" { variable "sonar_version" { type = string - default = "4.15" + default = "4.16" description = "The Sonar version to install. Supported versions are: 4.11 and up. Both long and short version formats are supported, for example, 4.12.0.10 or 4.12. The short format maps to the latest patch." validation { condition = !startswith(var.sonar_version, "4.9.") && !startswith(var.sonar_version, "4.10.") diff --git a/examples/aws/installation/sonar_single_account_deployment/variables.tf b/examples/aws/installation/sonar_single_account_deployment/variables.tf index 2c55cda66..187929961 100644 --- a/examples/aws/installation/sonar_single_account_deployment/variables.tf +++ b/examples/aws/installation/sonar_single_account_deployment/variables.tf @@ -16,7 +16,7 @@ variable "aws_region" { variable "sonar_version" { type = string - default = "4.15" + default = "4.16" description = "The Sonar version to install. Supported versions are: 4.11 and up. Both long and short version formats are supported, for example, 4.12.0.10 or 4.12. The short format maps to the latest patch." validation { condition = !startswith(var.sonar_version, "4.9.") && !startswith(var.sonar_version, "4.10.") diff --git a/examples/aws/poc/dsf_deployment/variables.tf b/examples/aws/poc/dsf_deployment/variables.tf index 8e755ae50..8c9bebd69 100644 --- a/examples/aws/poc/dsf_deployment/variables.tf +++ b/examples/aws/poc/dsf_deployment/variables.tf @@ -214,7 +214,7 @@ variable "dam_agent_installation_location" { variable "sonar_version" { type = string - default = "4.15" + default = "4.16" description = "The Sonar version to install. Supported versions are: 4.11 and up. Both long and short version formats are supported, for example, 4.12.0.10 or 4.12. The short format maps to the latest patch." validation { condition = !startswith(var.sonar_version, "4.9.") && !startswith(var.sonar_version, "4.10.") diff --git a/examples/aws/poc/sonar_basic_deployment/variables.tf b/examples/aws/poc/sonar_basic_deployment/variables.tf index 2451fdaba..cdac2f7ac 100644 --- a/examples/aws/poc/sonar_basic_deployment/variables.tf +++ b/examples/aws/poc/sonar_basic_deployment/variables.tf @@ -6,7 +6,7 @@ variable "deployment_name" { variable "sonar_version" { type = string - default = "4.15" + default = "4.16" description = "The Sonar version to install. Supported versions are: 4.11 and up. Both long and short version formats are supported, for example, 4.12.0.10 or 4.12. The short format maps to the latest patch." validation { condition = !startswith(var.sonar_version, "4.9.") && !startswith(var.sonar_version, "4.10.") diff --git a/examples/aws/poc/sonar_hadr_deployment/variables.tf b/examples/aws/poc/sonar_hadr_deployment/variables.tf index 00f96419c..bcccdea6e 100644 --- a/examples/aws/poc/sonar_hadr_deployment/variables.tf +++ b/examples/aws/poc/sonar_hadr_deployment/variables.tf @@ -6,7 +6,7 @@ variable "deployment_name" { variable "sonar_version" { type = string - default = "4.15" + default = "4.16" description = "The Sonar version to install. Supported versions are: 4.11 and up. Both long and short version formats are supported, for example, 4.12.0.10 or 4.12. The short format maps to the latest patch." validation { condition = !startswith(var.sonar_version, "4.9.") && !startswith(var.sonar_version, "4.10.") diff --git a/examples/azure/poc/dsf_deployment/variables.tf b/examples/azure/poc/dsf_deployment/variables.tf index a25f7e403..5e97b571c 100644 --- a/examples/azure/poc/dsf_deployment/variables.tf +++ b/examples/azure/poc/dsf_deployment/variables.tf @@ -176,7 +176,7 @@ variable "simulation_db_types_for_agent" { variable "sonar_version" { type = string - default = "4.15" + default = "4.16" description = "The Sonar version to install. Supported versions are: 4.11 and up. Both long and short version formats are supported, for example, 4.12.0.10 or 4.12. The short format maps to the latest patch." validation { condition = !startswith(var.sonar_version, "4.9.") && !startswith(var.sonar_version, "4.10.") diff --git a/modules/aws/core/globals/main.tf b/modules/aws/core/globals/main.tf index 0a73c78f5..2ea3355ea 100644 --- a/modules/aws/core/globals/main.tf +++ b/modules/aws/core/globals/main.tf @@ -1,5 +1,8 @@ locals { sonar_tarball_s3_key_map = { + "4.16" = "jsonar-4.16.0.10.0.tar.gz" + "4.16.0.10" = "jsonar-4.16.0.10.0.tar.gz" + "4.15" = "jsonar-4.15.0.10.0.tar.gz" "4.15.0.10" = "jsonar-4.15.0.10.0.tar.gz"