From 01e0b7a3bc416c1f1c1f371994dbb86bdcb39f66 Mon Sep 17 00:00:00 2001 From: Ed Date: Wed, 25 Sep 2024 10:00:36 -0500 Subject: [PATCH 1/2] feat(launch-template): Updated launch configs to launch tempaltes for GPE-1387 --- tf_files/aws/modules/squid_nlb_central_csoc/cloud.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tf_files/aws/modules/squid_nlb_central_csoc/cloud.tf b/tf_files/aws/modules/squid_nlb_central_csoc/cloud.tf index 1258487..01d1bd0 100644 --- a/tf_files/aws/modules/squid_nlb_central_csoc/cloud.tf +++ b/tf_files/aws/modules/squid_nlb_central_csoc/cloud.tf @@ -224,7 +224,7 @@ resource "aws_launch_template" "squid_nlb" { user_data = sensitive(base64encode( < Date: Wed, 25 Sep 2024 10:25:09 -0500 Subject: [PATCH 2/2] feat(launch-template): Updated launch configs to launch tempaltes for GPE-1387 --- tf_files/aws/modules/aurora/main.tf | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/tf_files/aws/modules/aurora/main.tf b/tf_files/aws/modules/aurora/main.tf index f1dc707..aeb2b62 100644 --- a/tf_files/aws/modules/aurora/main.tf +++ b/tf_files/aws/modules/aurora/main.tf @@ -34,6 +34,10 @@ resource "aws_rds_cluster" "postgresql" { max_capacity = var.serverlessv2_scaling_max_capacity min_capacity = var.serverlessv2_scaling_min_capacity } + + lifecycle { + ignore_changes = [engine_version] + } } # Aurora Cluster Instance @@ -45,6 +49,10 @@ resource "aws_rds_cluster_instance" "postgresql" { instance_class = var.cluster_instance_class engine = aws_rds_cluster.postgresql.engine engine_version = aws_rds_cluster.postgresql.engine_version + + lifecycle { + ignore_changes = [engine_version] + } }