Skip to content

Commit

Permalink
Merge pull request #490 from nasa/release-9.0.3
Browse files Browse the repository at this point in the history
Release 9.0.3
  • Loading branch information
rizbihassan authored Jan 30, 2024
2 parents 7715b77 + 1f8d1fc commit 00df301
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,16 @@ and includes an additional section for migration notes.

### 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
Expand Down
2 changes: 1 addition & 1 deletion modules/security_groups/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
4 changes: 2 additions & 2 deletions modules/security_groups/output.tf
Original file line number Diff line number Diff line change
@@ -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"
}
}

0 comments on commit 00df301

Please sign in to comment.