From 629ed661b36fa29069ad0ea76554df6e4668b0bc Mon Sep 17 00:00:00 2001 From: Michael Li Date: Thu, 25 Jan 2024 11:55:14 -0500 Subject: [PATCH] chore(e2e): Fix iam user creation (#4287) --- enos/modules/aws_iam_setup/main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/enos/modules/aws_iam_setup/main.tf b/enos/modules/aws_iam_setup/main.tf index 7554d1cb69..5088d56764 100644 --- a/enos/modules/aws_iam_setup/main.tf +++ b/enos/modules/aws_iam_setup/main.tf @@ -12,7 +12,7 @@ locals { } resource "aws_iam_user" "boundary" { - name = "demo-boundary-e2e-${var.test_id}" + name = "demo-${local.user_email}-${var.test_id}" tags = { boundary-demo = local.user_email } permissions_boundary = "arn:aws:iam::${data.aws_caller_identity.current.account_id}:policy/DemoUser" }