Skip to content

Commit 208ca71

Browse files
authored
feat: Add AWS IAM OpenID connect provider URL to outputs (#79)
1 parent b40581f commit 208ca71

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

outputs.tf

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,8 @@ output "oidc_provider_arn" {
1515
description = "The ARN of the OIDC provider."
1616
value = var.create_oidc_provider ? aws_iam_openid_connect_provider.github[0].arn : data.aws_iam_openid_connect_provider.github[0].arn
1717
}
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

Comments
 (0)