-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
outputs.tf
29 lines (24 loc) · 930 Bytes
/
outputs.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
output "id" {
description = "The ID of this provider."
value = aws_iam_openid_connect_provider.this.id
}
output "arn" {
description = "The ARN assigned by AWS for this provider."
value = aws_iam_openid_connect_provider.this.arn
}
output "url" {
description = "The URL of the identity provider."
value = var.url
}
output "urn" {
description = "The URN of the identity provider."
value = trimprefix(trimprefix(aws_iam_openid_connect_provider.this.url, "http://"), "https://")
}
output "audiences" {
description = "A list of audiences (also known as client IDs) for the IAM OIDC provider."
value = aws_iam_openid_connect_provider.this.client_id_list
}
output "thumbprints" {
description = "A list of server certificate thumbprints for the OpenID Connect (OIDC) identity provider's server certificate(s)."
value = aws_iam_openid_connect_provider.this.thumbprint_list
}