Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

COUN-2749: DSFKit | Add DRA v4.16.0.10 #421

Open
wants to merge 1 commit into
base: dev
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading