5 lines
160 B
HCL
5 lines
160 B
HCL
output "aws_iam_roles_arns" {
|
|
description = "The arns of the created IAM roles"
|
|
value = { for k, v in merge(aws_iam_role.self[*]...) : k => v.arn }
|
|
}
|