1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
output "oidc_provider_arns" {
description = "Map of OIDC provider logical key to ARN"
value = { for k, v in aws_iam_openid_connect_provider.this : k => v.arn }
}
output "oidc_provider_urls" {
description = "Map of OIDC provider logical key to URL (without https://)"
value = { for k, v in aws_iam_openid_connect_provider.this : k => v.url }
}
output "saml_provider_arns" {
description = "Map of SAML provider logical key to ARN"
value = { for k, v in aws_iam_saml_provider.this : k => v.arn }
}
|