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 b9e1ea7 commit 11d98e3Copy full SHA for 11d98e3
outputs.tf
@@ -23,3 +23,9 @@ output "iam_role_name" {
23
description = "Name of the IAM role."
24
value = var.enabled ? aws_iam_role.github[0].name : ""
25
}
26
+
27
+output "oidc_provider_arn" {
28
+ depends_on = [aws_iam_openid_connect_provider.github]
29
+ description = "ARN of the OIDC provider."
30
+ value = var.enabled ? aws_iam_openid_connect_provider.github[0].arn : ""
31
+}
0 commit comments