diff --git a/README.md b/README.md
index 0ecac32e..18d6350b 100644
--- a/README.md
+++ b/README.md
@@ -112,7 +112,7 @@ This guide references the following information and links, some of which are ava
Sonar v4.14
- DAM v14.15
+ DAM v14.16
DRA v4.15
|
@@ -706,7 +706,7 @@ This includes the following version of the DSF sub-products:
Restrictions on modules may apply
- DAM | 14.15.1.10 | 14.11.1.10 and up
+ | DAM | 14.16.1.10 | 14.11.1.10 and up
14.7.x.y (LTS)
diff --git a/examples/aws/installation/dsf_single_account_deployment/variables.tf b/examples/aws/installation/dsf_single_account_deployment/variables.tf
index 032c245f..f43d32bf 100644
--- a/examples/aws/installation/dsf_single_account_deployment/variables.tf
+++ b/examples/aws/installation/dsf_single_account_deployment/variables.tf
@@ -461,7 +461,7 @@ variable "sonar_machine_base_directory" {
variable "dam_version" {
type = string
description = "The DAM version to install"
- default = "14.15.1.10"
+ default = "14.16.1.10"
validation {
condition = can(regex("^(\\d{1,2}\\.){3}\\d{1,3}$", var.dam_version))
error_message = "Version must be in the format dd.dd.dd.dd where each dd is a number between 1-99 (e.g 14.10.1.10)"
diff --git a/examples/aws/poc/dsf_deployment/variables.tf b/examples/aws/poc/dsf_deployment/variables.tf
index 8e755ae5..2aa6e4f6 100644
--- a/examples/aws/poc/dsf_deployment/variables.tf
+++ b/examples/aws/poc/dsf_deployment/variables.tf
@@ -123,7 +123,7 @@ variable "subnet_ids" {
variable "dam_version" {
type = string
description = "The DAM version to install"
- default = "14.15.1.10"
+ default = "14.16.1.10"
validation {
condition = can(regex("^(\\d{1,2}\\.){3}\\d{1,3}$", var.dam_version))
error_message = "Version must be in the format dd.dd.dd.dd where each dd is a number between 1-99 (e.g 14.10.1.10)"
diff --git a/examples/azure/poc/dsf_deployment/variables.tf b/examples/azure/poc/dsf_deployment/variables.tf
index a25f7e40..da4712f3 100644
--- a/examples/azure/poc/dsf_deployment/variables.tf
+++ b/examples/azure/poc/dsf_deployment/variables.tf
@@ -118,7 +118,7 @@ variable "subnet_ids" {
variable "dam_version" {
type = string
description = "The DAM version to install"
- default = "14.15.1.10"
+ default = "14.16.1.10"
validation {
condition = can(regex("^(\\d{1,2}\\.){3}\\d{1,3}$", var.dam_version))
error_message = "Version must be in the format dd.dd.dd.dd where each dd is a number between 1-99 (e.g 14.10.1.10)"
|