-
Notifications
You must be signed in to change notification settings - Fork 2
/
outputs.tf
59 lines (46 loc) · 1.06 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 "demo-1" {
# value = module.aks-1.aks_get_credential
# }
# output "demo-2" {
# value = module.aks-2.aks_get_credential
# }
# output "account-name" {
# value = module.storage_container.account_name
# }
# output "account-name-2" {
# value = module.storage_container_2.account_name
# }
# output "blob-access-key" {
# sensitive = true
# value = module.storage_container.access-key
# }
# output "appi-key" {
# sensitive = true
# value = module.appi.instrumentation_key
# }
# output "acr-server" {
# value = module.acr.server
# }
# output "app-client-id" {
# value = azuread_application.main.application_id
# }
output "sp-id" {
value = module.sp.id
}
output "sp-password" {
sensitive = true
value = module.sp.password
}
output "tenant-id" {
value = data.azurerm_client_config.current.tenant_id
}
# output "cosmos-mongodb-connection-strings" {
# sensitive = true
# value = module.mongodb.connection_strings
# }
output "key-id" {
value = module.key-vault.key-id
}
output "app-id" {
value = azuread_application.default.application_id
}