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 }
}
