From 7d8e24ce9c59caa5ae5bafe71ed19a3c9d2535f1 Mon Sep 17 00:00:00 2001 From: Maciej Matysiak <103054339+mmgovuk@users.noreply.github.com> Date: Thu, 12 Sep 2024 11:39:12 +0100 Subject: [PATCH] CC-2812: Fixed a typo. --- terraform/environments/laa-oem/oem_iam.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/terraform/environments/laa-oem/oem_iam.tf b/terraform/environments/laa-oem/oem_iam.tf index eeadba2e4c0..f4ddc4cc6a8 100644 --- a/terraform/environments/laa-oem/oem_iam.tf +++ b/terraform/environments/laa-oem/oem_iam.tf @@ -116,7 +116,7 @@ data "aws_iam_policy_document" "laa_oem_shared_s3" { } resource "aws_iam_policy" "laa_oem_shared_s3" { - description = "Policy to allow operations in ${aws_s3_bucket.laa_oem_shared.name}" + description = "Policy to allow operations in ${aws_s3_bucket.laa_oem_shared.id}" name = "laa_oem_shared_s3-${local.environment}" policy = data.aws_iam_policy_document.laa_oem_shared_s3.json }