-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
outputs.tf
59 lines (50 loc) · 1.47 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
output "pool_name" {
description = "Pool name"
value = google_iam_workload_identity_pool.pool.name
sensitive = false
}
output "pool_id" {
description = "Pool ID"
value = google_iam_workload_identity_pool.pool.id
sensitive = false
}
output "pool_display_name" {
description = "Pool display name"
value = google_iam_workload_identity_pool.pool.display_name
sensitive = false
}
output "provider_name" {
description = "Provider name"
value = google_iam_workload_identity_pool_provider.provider.name
sensitive = false
}
output "provider_id" {
description = "Provider ID"
value = google_iam_workload_identity_pool_provider.provider.id
sensitive = false
}
output "provider_display_name" {
description = "Provider display name"
value = google_iam_workload_identity_pool_provider.provider.display_name
sensitive = false
}
output "service_account_id" {
description = "Service account ID"
value = google_service_account.sa.account_id
sensitive = false
}
output "service_account_display_name" {
description = "Service account display name"
value = google_service_account.sa.display_name
sensitive = false
}
output "service_account_name" {
description = "Service account name"
value = google_service_account.sa.name
sensitive = false
}
output "service_account_email" {
description = "Service account email"
value = google_service_account.sa.email
sensitive = false
}