diff --git a/examples/installation/multi_account_deployment/README.md b/examples/installation/multi_account_deployment/README.md index 03ec038b1..eb1ad7ecb 100644 --- a/examples/installation/multi_account_deployment/README.md +++ b/examples/installation/multi_account_deployment/README.md @@ -13,4 +13,4 @@ This example is intended for PS/customers who want to bring their own networking It is possible to provide as input to this example, in which subnets to deploy the Hub and the Gateway. They can be in the same or in different subnets, the same or different AWS accounts, etc. -For a full list of this example's customization options which don't require code changes, refer to the [variables.tf](https://github.com/imperva/dsfkit/tree/1.3.5/examples/installation/multi_account_deployment/variables.tf) file. \ No newline at end of file +For a full list of this example's customization options which don't require code changes, refer to the [variables.tf](https://github.com/imperva/dsfkit/tree/1.3.4/examples/installation/multi_account_deployment/variables.tf) file. \ No newline at end of file diff --git a/examples/installation/multi_account_deployment/main.tf b/examples/installation/multi_account_deployment/main.tf index 628f12252..ca1994ef4 100644 --- a/examples/installation/multi_account_deployment/main.tf +++ b/examples/installation/multi_account_deployment/main.tf @@ -17,7 +17,7 @@ provider "aws" { module "globals" { source = "imperva/dsf-globals/aws" - version = "1.3.5" # latest release tag + version = "1.3.4" # latest release tag sonar_version = var.sonar_version } @@ -42,14 +42,14 @@ locals { module "key_pair_hub" { source = "imperva/dsf-globals/aws//modules/key_pair" - version = "1.3.5" # latest release tag + version = "1.3.4" # latest release tag key_name_prefix = "imperva-dsf-hub" private_key_pem_filename = "ssh_keys/dsf_ssh_key-hub-${terraform.workspace}" } module "key_pair_gw" { source = "imperva/dsf-globals/aws//modules/key_pair" - version = "1.3.5" # latest release tag + version = "1.3.4" # latest release tag key_name_prefix = "imperva-dsf-gw" private_key_pem_filename = "ssh_keys/dsf_ssh_key-gw-${terraform.workspace}" providers = { @@ -63,7 +63,7 @@ module "key_pair_gw" { module "hub" { source = "imperva/dsf-hub/aws" - version = "1.3.5" # latest release tag + version = "1.3.4" # latest release tag friendly_name = join("-", [local.deployment_name_salted, "hub", "primary"]) subnet_id = var.subnet_hub binaries_location = local.tarball_location @@ -87,7 +87,7 @@ module "hub" { module "agentless_gw_group" { count = var.gw_count source = "imperva/dsf-agentless-gw/aws" - version = "1.3.5" # latest release tag + version = "1.3.4" # latest release tag friendly_name = join("-", [local.deployment_name_salted, "gw", count.index]) instance_type = var.gw_instance_type ami_name_tag = var.gw_ami_name @@ -119,7 +119,7 @@ module "agentless_gw_group" { module "federation" { for_each = { for idx, val in module.agentless_gw_group : idx => val } source = "imperva/dsf-federation/null" - version = "1.3.5" # latest release tag + version = "1.3.4" # latest release tag gws_info = { gw_ip_address = each.value.private_ip gw_private_ssh_key_path = module.key_pair_gw.key_pair_private_pem.filename diff --git a/examples/installation/multi_account_deployment/multi_account_deployment.zip b/examples/installation/multi_account_deployment/multi_account_deployment.zip index ba9cd24c9..0421a015c 100644 Binary files a/examples/installation/multi_account_deployment/multi_account_deployment.zip and b/examples/installation/multi_account_deployment/multi_account_deployment.zip differ diff --git a/examples/poc/basic_deployment/basic_deployment.zip b/examples/poc/basic_deployment/basic_deployment.zip index 35a8480b1..cb86d7640 100644 Binary files a/examples/poc/basic_deployment/basic_deployment.zip and b/examples/poc/basic_deployment/basic_deployment.zip differ diff --git a/examples/poc/basic_deployment/main.tf b/examples/poc/basic_deployment/main.tf index 657aec1bc..aa2e665e6 100644 --- a/examples/poc/basic_deployment/main.tf +++ b/examples/poc/basic_deployment/main.tf @@ -6,13 +6,13 @@ provider "aws" { module "globals" { source = "imperva/dsf-globals/aws" - version = "1.3.5" # latest release tag + version = "1.3.4" # latest release tag sonar_version = var.sonar_version } module "key_pair" { source = "imperva/dsf-globals/aws//modules/key_pair" - version = "1.3.5" # latest release tag + version = "1.3.4" # latest release tag key_name_prefix = "imperva-dsf-" private_key_pem_filename = "ssh_keys/dsf_ssh_key-${terraform.workspace}" } @@ -59,7 +59,7 @@ module "vpc" { module "hub" { source = "imperva/dsf-hub/aws" - version = "1.3.5" # latest release tag + version = "1.3.4" # latest release tag friendly_name = join("-", [local.deployment_name_salted, "hub", "primary"]) subnet_id = module.vpc.public_subnets[0] binaries_location = local.tarball_location @@ -83,7 +83,7 @@ module "hub" { module "agentless_gw_group" { count = var.gw_count source = "imperva/dsf-agentless-gw/aws" - version = "1.3.5" # latest release tag + version = "1.3.4" # latest release tag friendly_name = join("-", [local.deployment_name_salted, "gw", count.index]) subnet_id = module.vpc.private_subnets[0] ebs = var.gw_group_ebs_details @@ -112,7 +112,7 @@ module "agentless_gw_group" { module "federation" { for_each = { for idx, val in module.agentless_gw_group : idx => val } source = "imperva/dsf-federation/null" - version = "1.3.5" # latest release tag + version = "1.3.4" # latest release tag gws_info = { gw_ip_address = each.value.private_ip gw_private_ssh_key_path = module.key_pair.key_pair_private_pem.filename @@ -132,7 +132,7 @@ module "federation" { module "rds_mysql" { count = 1 source = "imperva/dsf-poc-db-onboarder/aws//modules/rds-mysql-db" - version = "1.3.5" # latest release tag + version = "1.3.4" # latest release tag rds_subnet_ids = module.vpc.public_subnets security_group_ingress_cidrs = local.workstation_cidr } @@ -140,7 +140,7 @@ module "rds_mysql" { module "db_onboarding" { for_each = { for idx, val in module.rds_mysql : idx => val } source = "imperva/dsf-poc-db-onboarder/aws" - version = "1.3.5" # latest release tag + version = "1.3.4" # latest release tag sonar_version = module.globals.tarball_location.version hub_info = { hub_ip_address = module.hub.public_ip @@ -166,7 +166,7 @@ module "db_onboarding" { module "statistics" { source = "imperva/dsf-statistics/aws" - version = "1.3.5" # latest release tag + version = "1.3.4" # latest release tag } output "db_details" { diff --git a/examples/poc/hadr_deployment/hadr_deployment.zip b/examples/poc/hadr_deployment/hadr_deployment.zip index 852949880..36d788326 100644 Binary files a/examples/poc/hadr_deployment/hadr_deployment.zip and b/examples/poc/hadr_deployment/hadr_deployment.zip differ diff --git a/examples/poc/hadr_deployment/main.tf b/examples/poc/hadr_deployment/main.tf index 243d3279b..b89395c44 100644 --- a/examples/poc/hadr_deployment/main.tf +++ b/examples/poc/hadr_deployment/main.tf @@ -6,13 +6,13 @@ provider "aws" { module "globals" { source = "imperva/dsf-globals/aws" - version = "1.3.5" # latest release tag + version = "1.3.4" # latest release tag sonar_version = var.sonar_version } module "key_pair" { source = "imperva/dsf-globals/aws//modules/key_pair" - version = "1.3.5" # latest release tag + version = "1.3.4" # latest release tag key_name_prefix = "imperva-dsf-" private_key_pem_filename = "ssh_keys/dsf_ssh_key-${terraform.workspace}" } @@ -58,7 +58,7 @@ module "vpc" { ############################## module "hub" { source = "imperva/dsf-hub/aws" - version = "1.3.5" # latest release tag + version = "1.3.4" # latest release tag friendly_name = join("-", [local.deployment_name_salted, "hub", "primary"]) subnet_id = module.vpc.public_subnets[0] binaries_location = local.tarball_location @@ -81,7 +81,7 @@ module "hub" { module "hub_secondary" { source = "imperva/dsf-hub/aws" - version = "1.3.5" # latest release tag + version = "1.3.4" # latest release tag friendly_name = join("-", [local.deployment_name_salted, "hub", "secondary"]) subnet_id = module.vpc.public_subnets[1] binaries_location = local.tarball_location @@ -108,7 +108,7 @@ module "hub_secondary" { module "agentless_gw_group" { count = var.gw_count source = "imperva/dsf-agentless-gw/aws" - version = "1.3.5" # latest release tag + version = "1.3.4" # latest release tag friendly_name = join("-", [local.deployment_name_salted, "gw", count.index]) subnet_id = module.vpc.private_subnets[0] ebs = var.gw_group_ebs_details @@ -146,7 +146,7 @@ locals { module "federation" { count = length(local.hub_gw_combinations) source = "imperva/dsf-federation/null" - version = "1.3.5" # latest release tag + version = "1.3.4" # latest release tag gws_info = { gw_ip_address = local.hub_gw_combinations[count.index][1].private_ip gw_private_ssh_key_path = module.key_pair.key_pair_private_pem.filename @@ -166,7 +166,7 @@ module "federation" { module "hadr" { source = "imperva/dsf-hadr/null" - version = "1.3.5" # latest release tag + version = "1.3.4" # latest release tag dsf_hub_primary_public_ip = module.hub.public_ip dsf_hub_primary_private_ip = module.hub.private_ip dsf_hub_secondary_public_ip = module.hub_secondary.public_ip @@ -183,7 +183,7 @@ module "hadr" { module "rds_mysql" { count = 1 source = "imperva/dsf-poc-db-onboarder/aws//modules/rds-mysql-db" - version = "1.3.5" # latest release tag + version = "1.3.4" # latest release tag rds_subnet_ids = module.vpc.public_subnets security_group_ingress_cidrs = local.workstation_cidr } @@ -191,7 +191,7 @@ module "rds_mysql" { module "db_onboarding" { for_each = { for idx, val in module.rds_mysql : idx => val } source = "imperva/dsf-poc-db-onboarder/aws" - version = "1.3.5" # latest release tag + version = "1.3.4" # latest release tag sonar_version = module.globals.tarball_location.version hub_info = { hub_ip_address = module.hub.public_ip @@ -218,7 +218,7 @@ module "db_onboarding" { module "statistics" { source = "imperva/dsf-statistics/aws" - version = "1.3.5" # latest release tag + version = "1.3.4" # latest release tag } output "db_details" {