Skip to content

Commit

Permalink
Fix bug of urn output in iam-oidc-identity-provider module
Browse files Browse the repository at this point in the history
  • Loading branch information
posquit0 committed May 21, 2024
1 parent 019ed6f commit 9c87514
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.30.0
0.30.1
4 changes: 2 additions & 2 deletions modules/iam-oidc-identity-provider/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ This module creates following resources.

| Name | Version |
|------|---------|
| <a name="provider_aws"></a> [aws](#provider\_aws) | 5.24.0 |
| <a name="provider_tls"></a> [tls](#provider\_tls) | 4.0.4 |
| <a name="provider_aws"></a> [aws](#provider\_aws) | 5.50.0 |
| <a name="provider_tls"></a> [tls](#provider\_tls) | 4.0.5 |

## Modules

Expand Down
2 changes: 1 addition & 1 deletion modules/iam-oidc-identity-provider/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ output "url" {

output "urn" {
description = "The URN of the identity provider."
value = aws_iam_openid_connect_provider.this.url
value = trimprefix(trimprefix(aws_iam_openid_connect_provider.this.url, "http://"), "https://")
}

output "audiences" {
Expand Down

0 comments on commit 9c87514

Please sign in to comment.