Skip to content
Merged
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 @@ -188,8 +188,8 @@ jobs:
PATH_TO_DRA_ANALYTICS_VHD="DRA-${{ github.event.inputs.product_full_version }}_x86_64-Analytics.vhd"
PATH_TO_DRA_ADMIN_VHD="DRA-${{ github.event.inputs.product_full_version }}_x86_64-Admin.vhd"
else
PATH_TO_DRA_ANALYTICS_VHD="DRA-4.17.0.10.0.6_31077_x86_64-Analytics.vhd"
PATH_TO_DRA_ADMIN_VHD="DRA-4.17.0.10.0.6_31077_x86_64-Admin.vhd"
PATH_TO_DRA_ANALYTICS_VHD="DRA-4.18.0.10.0.12_31582_x86_64-Analytics.vhd"
PATH_TO_DRA_ADMIN_VHD="DRA-4.18.0.10.0.12_31582_x86_64-Admin.vhd"
fi

if [ "${{ github.event.inputs.deployment_type }}" == "sonar" ] && [ "${{ github.event.inputs.product_full_version }}" != "latest" ] && [ -n "${{ github.event.inputs.product_full_version }}" ]; then
Expand Down
13 changes: 11 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-knowledgebase-dt/page/393216754.html">DAM v14.17</a>

<a href="https://docs.imperva.com/bundle/z-kb-articles-knowledgebase-dt/page/290722037.html">DRA v4.17</a>
<a href="https://docs.imperva.com/bundle/z-kb-articles-knowledgebase-dt/page/389415621.html">DRA v4.18</a>
</td>
<td>DSF Components Overview
</td>
Expand Down Expand Up @@ -576,6 +576,15 @@ The following table lists the _latest_ DSF Kit releases, their release date and
Improvements and bug fixes
</td>
</tr>
<tr>
<td>TBD
</td>
<td>1.7.29
</td>
<td>
Added internal support for DRA version 4.18. Set the variable ‘dra_version’ to 4.18 to use it.
</td>
</tr>

</table>

Expand Down Expand Up @@ -778,7 +787,7 @@ Restrictions on modules may apply</td>

</tr>
<tr>
<td>DRA</td><td>4.17.0.10</td><td>4.11.0.10 and up</td>
<td>DRA</td><td>4.17.0.10</td><td>4.11.0.10 - 4.18.0.10</td>
</tr>
</table>

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 @@ -45,6 +45,9 @@ locals {

locals {
dra_version_map = {
"4.18" = "4.18.0.10.0.12",
"4.18.0.10" = "4.18.0.10.0.12",

"4.17" = "4.17.0.10.0.6",
"4.17.0.10" = "4.17.0.10.0.6",

Expand Down