From 134cec3a74f34976e9c3b0bfd35e9b84daea9c75 Mon Sep 17 00:00:00 2001 From: timburke-hackit <61045197+timburke-hackit@users.noreply.github.com> Date: Mon, 15 Jan 2024 08:20:03 +0000 Subject: [PATCH] Adhoc role for anna (#1550) * add iam role * change resources from names to arns * finish merge --- terraform/etl/48-lambda-gov-notify-ingestion.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/terraform/etl/48-lambda-gov-notify-ingestion.tf b/terraform/etl/48-lambda-gov-notify-ingestion.tf index 0a089d828..1c275c084 100644 --- a/terraform/etl/48-lambda-gov-notify-ingestion.tf +++ b/terraform/etl/48-lambda-gov-notify-ingestion.tf @@ -17,8 +17,8 @@ data "aws_iam_policy_document" "housing_landing_zone_access" { ] resources = [ - module.landing_zone_data_source.bucket_id, - "${module.landing_zone_data_source.bucket_id}/housing/*", + module.landing_zone_data_source.bucket_arn, + "${module.landing_zone_data_source.bucket_arn}/housing/*", ] } }