diff --git a/.github/workflows/dsf_poc_cli.yml b/.github/workflows/dsf_poc_cli.yml index 330b10f5..3e34a22d 100644 --- a/.github/workflows/dsf_poc_cli.yml +++ b/.github/workflows/dsf_poc_cli.yml @@ -242,7 +242,7 @@ jobs: # This step allows time for investigation of the failed resources before destroying them - name: Conditional Delay - if: ${{ failure() }} + if: failure() run: | echo "delay_destroy: ${{ inputs.delay_destroy }}" if [ "${{ inputs.delay_destroy }}" == "true" ]; then diff --git a/examples/aws/installation/dsf_single_account_deployment/variables.tf b/examples/aws/installation/dsf_single_account_deployment/variables.tf index ad5dda16..6110b363 100644 --- a/examples/aws/installation/dsf_single_account_deployment/variables.tf +++ b/examples/aws/installation/dsf_single_account_deployment/variables.tf @@ -455,7 +455,7 @@ variable "sonar_machine_base_directory" { variable "dam_version" { type = string description = "The DAM version to install" - default = "14.17.1.10" + default = "15.0.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 98236a09..ef3f0314 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.17.1.10" + default = "15.0.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 07d4c886..9a3e9286 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.17.1.10" + default = "15.0.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)"