-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutputs.tf
66 lines (51 loc) · 1.74 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
60
61
62
63
64
65
66
output "cert_manager_identity_client_id" {
value = azurerm_user_assigned_identity.cert_manager.client_id
}
output "cert_manager_identity_id" {
value = azurerm_user_assigned_identity.cert_manager.id
}
output "dns_zone_resource_group_name" {
value = "" # data.azurerm_dns_zone.cloud_statcan_ca.resource_group_name
}
output "dns_zone_name" {
value = "" # data.azurerm_dns_zone.cloud_statcan_ca.name
}
output "dns_zone_subscription_id" {
value = "" # data.azurerm_client_config.current.subscription_id
}
output "backup_resource_group_name" {
value = azurerm_resource_group.backup.name
}
output "vault_identity_client_id" {
value = azurerm_user_assigned_identity.vault.client_id
}
output "vault_identity_id" {
value = azurerm_user_assigned_identity.vault.id
}
output "velero_identity_client_id" {
value = azurerm_user_assigned_identity.velero.client_id
}
output "velero_identity_id" {
value = azurerm_user_assigned_identity.velero.id
}
output "velero_storage_account_name" {
value = azurerm_storage_account.velero.name
}
output "velero_storage_bucket_name" {
value = azurerm_storage_container.velero.name
}
######################
### Argo Workflows ###
######################
output "platform_workflows_storage_account_name" {
description = "The name of the workflows storage account."
value = azurerm_storage_account.workflows.name
}
output "platform_workflows_primary_access_key" {
description = "The primary access key of the workflows storage account."
value = azurerm_storage_account.workflows.primary_access_key
}
output "platform_workflows_primary_blob_endpoint" {
description = "The primary blob endpoint of the workflows storage account."
value = azurerm_storage_account.workflows.primary_blob_endpoint
}