chore(infrastructure): rename test role to avoid collision with tofu-module-aws-iam-ci-user
All checks were successful
main / test (push) Successful in 52s

This commit is contained in:
Julien Dessaux 2025-04-12 08:29:44 +02:00
parent eb54320d07
commit 3be1738e04
Signed by: adyxax
GPG key ID: F92E51B86E07177E
2 changed files with 2 additions and 2 deletions

View file

@ -14,6 +14,6 @@ module "aws_iam_ci_user" {
tests_policy_statements = jsonencode([{ tests_policy_statements = jsonencode([{
Action = "iam:*" Action = "iam:*"
Effect = "Allow" Effect = "Allow"
Resource = "arn:aws:iam::*:role/tftest", Resource = "arn:aws:iam::*:role/tftest-role",
}]) }])
} }

View file

@ -11,5 +11,5 @@ run "main" {
} }
variables { variables {
name = "tftest" name = "tftest-role"
} }