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 150ad8a commit 2b44477Copy full SHA for 2b44477
modules/iam-assumable-role-with-oidc/main.tf
@@ -2,7 +2,7 @@ locals {
2
aws_account_id = var.aws_account_id != "" ? var.aws_account_id : data.aws_caller_identity.current.account_id
3
# clean URLs of https:// prefix
4
urls = [
5
- for url in distinct(concat(var.provider_urls, [var.provider_url])) :
+ for url in compact(distinct(concat(var.provider_urls, [var.provider_url]))) :
6
replace(url, "https://", "")
7
]
8
identifiers = [
0 commit comments