Skip to content

Commit 9c87514

Browse files
committed
Fix bug of urn output in iam-oidc-identity-provider module
1 parent 019ed6f commit 9c87514

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.30.0
1+
0.30.1

modules/iam-oidc-identity-provider/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ This module creates following resources.
1818

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

2424
## Modules
2525

modules/iam-oidc-identity-provider/outputs.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ output "url" {
1515

1616
output "urn" {
1717
description = "The URN of the identity provider."
18-
value = aws_iam_openid_connect_provider.this.url
18+
value = trimprefix(trimprefix(aws_iam_openid_connect_provider.this.url, "http://"), "https://")
1919
}
2020

2121
output "audiences" {

0 commit comments

Comments
 (0)