Skip to content

Commit

Permalink
COUN-2749: DSFKit | Add DRA v4.16.0.10
Browse files Browse the repository at this point in the history
  • Loading branch information
idannof-imperva committed Jun 16, 2024
1 parent 57453ea commit da76715
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/dsf_poc_cli_azure.yml
Original file line number Diff line number Diff line change
Expand Up @@ -167,12 +167,12 @@ jobs:
dra_admin_vhd_details = {
storage_account_name = "dsfinstallation"
container_name = "dra"
path_to_vhd = "DRA-4.15.0.11.0.12_30650_x86_64-Admin.vhd"
path_to_vhd = "DRA-4.16.0.10.0.119_30763_x86_64-Admin.vhd"
}
dra_analytics_vhd_details = {
storage_account_name = "dsfinstallation"
container_name = "dra"
path_to_vhd = "DRA-4.15.0.11.0.12_30650_x86_64-Analytics.vhd"
path_to_vhd = "DRA-4.16.0.10.0.119_30763_x86_64-Analytics.vhd"
}
EOF
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ This guide references the following information and links, some of which are ava
<a href="https://docs.imperva.com/bundle/z-kb-articles-km/page/7c2caf7d.html">DAM v14.15</a>
<a href="https://docs.imperva.com/bundle/z-kb-articles-km/page/92a5dbc3.html">DRA v4.15</a>
<a href="https://docs.imperva.com/bundle/z-kb-articles-km/page/02e3d1fc.html">DRA v4.16</a>
</td>
<td>DSF Components Overview
</td>
Expand Down Expand Up @@ -702,7 +702,7 @@ Restrictions on modules may apply</td>
</tr>
<tr>
<td>DRA</td><td>4.15.0.10</td><td>4.11.0.10 and up</td>
<td>DRA</td><td>4.16.0.10</td><td>4.11.0.10 and up</td>
</tr>
</table>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -578,7 +578,7 @@ variable "cluster_name" {

variable "dra_version" {
type = string
default = "4.15"
default = "4.16"
description = "The DRA version to install. Supported versions are 4.11.0.10 and up. Both long and short version formats are supported, for example, 4.11.0.10 or 4.11. The short format maps to the latest patch."
validation {
condition = !startswith(var.dra_version, "4.10.") && !startswith(var.dra_version, "4.9.") && !startswith(var.dra_version, "4.8.") && !startswith(var.dra_version, "4.3.") && !startswith(var.dra_version, "4.2.") && !startswith(var.dra_version, "4.1.")
Expand Down
2 changes: 1 addition & 1 deletion examples/aws/poc/dsf_deployment/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@ variable "simulation_db_types_for_agentless" {

variable "dra_version" {
type = string
default = "4.15"
default = "4.16"
description = "The DRA version to install. Supported versions are 4.11.0.10 and up. Both long and short version formats are supported, for example, 4.11.0.10 or 4.11. The short format maps to the latest patch."
validation {
condition = !startswith(var.dra_version, "4.10.") && !startswith(var.dra_version, "4.9.") && !startswith(var.dra_version, "4.8.") && !startswith(var.dra_version, "4.3.") && !startswith(var.dra_version, "4.2.") && !startswith(var.dra_version, "4.1.")
Expand Down
3 changes: 3 additions & 0 deletions modules/aws/core/globals/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,9 @@ locals {

locals {
dra_version_map = {
"4.16" = "4.16.0.10.0.119",
"4.16.0.10" = "4.16.0.10.0.119",

"4.15" = "4.15.0.11.0.12",
"4.15.0.11" = "4.15.0.11.0.12",

Expand Down
2 changes: 1 addition & 1 deletion modules/aws/dra-admin/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ variable "key_pair" {

variable "dra_version" {
type = string
default = "4.15"
default = "4.16"
description = "The DRA version to install. Supported versions are 4.11.0.10.0.7 and up. Full version format is supported, for example, 4.11.0.10.0.7."
nullable = false
validation {
Expand Down
2 changes: 1 addition & 1 deletion modules/aws/dra-analytics/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ variable "archiver_user" {

variable "dra_version" {
type = string
default = "4.15"
default = "4.16"
description = "The DRA version to install. Supported versions are 4.11.0.10.0.7 and up. Full version format is supported, for example, 4.11.0.10.0.7."
nullable = false
validation {
Expand Down

0 comments on commit da76715

Please sign in to comment.