We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d5f4644 commit 2ef5c27Copy full SHA for 2ef5c27
outputs.tf
@@ -17,3 +17,9 @@ output "iam_role_arn" {
17
description = "ARN of the IAM role."
18
value = var.enabled ? aws_iam_role.github[0].arn : ""
19
}
20
+
21
+output "iam_role_name" {
22
+ depends_on = [aws_iam_role.github]
23
+ description = "Name of the IAM role."
24
+ value = var.enabled ? aws_iam_role.github[0].name : ""
25
+}
0 commit comments