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 b40581f commit 208ca71Copy full SHA for 208ca71
outputs.tf
@@ -15,3 +15,8 @@ output "oidc_provider_arn" {
15
description = "The ARN of the OIDC provider."
16
value = var.create_oidc_provider ? aws_iam_openid_connect_provider.github[0].arn : data.aws_iam_openid_connect_provider.github[0].arn
17
}
18
+
19
+output "oidc_provider_url" {
20
+ description = "The URL of the OIDC provider."
21
+ value = var.create_oidc_provider ? aws_iam_openid_connect_provider.github[0].url : data.aws_iam_openid_connect_provider.github[0].url
22
+}
0 commit comments