From 9129c6dbbab926ca3f55050109fbd2829c92de69 Mon Sep 17 00:00:00 2001 From: Andrew Hemming Date: Sat, 20 Jan 2024 19:57:25 +0000 Subject: [PATCH] Fix another reference --- modules/postgres-restore/download_sg.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/postgres-restore/download_sg.tf b/modules/postgres-restore/download_sg.tf index 5a2e687e..1e2b835f 100644 --- a/modules/postgres-restore/download_sg.tf +++ b/modules/postgres-restore/download_sg.tf @@ -13,7 +13,7 @@ resource "aws_security_group_rule" "restore_download_task_https_out_anywhere" { description = "Allow https out from download task to anywhere" from_port = 443 protocol = "tcp" - security_group_id = aws_security_group.download_task.id + security_group_id = aws_security_group.restore_download_task.id to_port = 443 type = "egress" }