feat(module): add output variable arn and deprecate output variable iam_role_arn

This commit is contained in:
Julien Dessaux 2025-04-12 07:39:57 +02:00
parent 336e7703d6
commit 441295d140
Signed by: adyxax
GPG key ID: F92E51B86E07177E
3 changed files with 19 additions and 2 deletions

View file

@ -1,3 +1,10 @@
output "arn" {
description = "AWS IAM role ARN."
sensitive = false
value = aws_iam_role.main.id
}
# Deprecated since 1.1.0
output "iam_role_arn" {
description = "AWS IAM role ARN."
sensitive = false