From a0af1f9b28211a24f4befd904dbec31ae20d0b9c Mon Sep 17 00:00:00 2001 From: Zachary Roehrich <131377950+zroehrich@users.noreply.github.com> Date: Mon, 29 Jan 2024 15:22:14 -0600 Subject: [PATCH 1/4] Fix source_security_group_id value --- modules/security_groups/main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/security_groups/main.tf b/modules/security_groups/main.tf index 5ce78c283..9deabefd6 100644 --- a/modules/security_groups/main.tf +++ b/modules/security_groups/main.tf @@ -38,6 +38,6 @@ resource "aws_security_group_rule" "rds_allow_lambda_access" { to_port = 5432 protocol = "TCP" description = "Allows ${var.prefix} Orca lambda access." - source_security_group_id = aws_security_group.vpc-postgres-ingress-all-egress.id + source_security_group_id = aws_security_group.vpc_postgres_ingress_all_egress.id security_group_id = var.rds_security_group_id } From 2976e2b899fff70afd82bfdde4db272eadbc34e9 Mon Sep 17 00:00:00 2001 From: Zachary Roehrich <131377950+zroehrich@users.noreply.github.com> Date: Mon, 29 Jan 2024 15:23:04 -0600 Subject: [PATCH 2/4] Update output.tf to reference correct value --- modules/security_groups/output.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/security_groups/output.tf b/modules/security_groups/output.tf index 914606ff1..a7a1196a1 100644 --- a/modules/security_groups/output.tf +++ b/modules/security_groups/output.tf @@ -1,4 +1,4 @@ output "vpc_postgres_ingress_all_egress_id" { - value = aws_security_group.vpc-postgres-ingress-all-egress.id + value = aws_security_group.vpc_postgres_ingress_all_egress.id description = "PostgreSQL security group id" -} \ No newline at end of file +} From b8d5bd4cd86833f488fec636fa06db788edeea30 Mon Sep 17 00:00:00 2001 From: Zachary Roehrich <131377950+zroehrich@users.noreply.github.com> Date: Mon, 29 Jan 2024 15:29:39 -0600 Subject: [PATCH 3/4] Update CHANGELOG.md --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0772c4db8..c4a53402f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -27,6 +27,8 @@ and includes an additional section for migration notes. ### Fixed +- *ORCA-823* Fixed security group errors of incorrect referenced resources in `modules/security-groups/main.tf` and `modules/security-groups/outputs.tf` + ### Security ## [9.0.2] 2024-01-26 From 1f8d1fc7218549b37f2c3d9a4ff456834fff51cf Mon Sep 17 00:00:00 2001 From: Rizbi Hassan Date: Tue, 30 Jan 2024 11:49:52 -0600 Subject: [PATCH 4/4] updated changelog --- CHANGELOG.md | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c4a53402f..d5cd83392 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -27,10 +27,18 @@ and includes an additional section for migration notes. ### Fixed -- *ORCA-823* Fixed security group errors of incorrect referenced resources in `modules/security-groups/main.tf` and `modules/security-groups/outputs.tf` - ### Security +## [9.0.3] 2024-01-30 + +### Migration Notes + +If you are migrating from ORCA v8.x.x to this version, see the migration notes under v9.0.0. + +### Fixed + +- *ORCA-823* Fixed security group errors of incorrect referenced resources in `modules/security-groups/main.tf` and `modules/security-groups/outputs.tf`. This fixes the deployment errors seen in ORCA v9.0.2. + ## [9.0.2] 2024-01-26 ### Migration Notes