generated from libre-devops/terraform-module-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
outputs.tf
89 lines (72 loc) · 3.96 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
output "cosmosdb_account_ids" {
description = "The IDs of the CosmosDB accounts."
value = { for k, v in azurerm_cosmosdb_account.this : k => v.id }
}
output "cosmosdb_endpoints" {
description = "The endpoints used to connect to the CosmosDB accounts."
value = { for k, v in azurerm_cosmosdb_account.this : k => v.endpoint }
}
output "cosmosdb_identity_principal_ids" {
description = "The Principal IDs associated with each CosmosDB account's Managed Service Identity."
value = { for k, v in azurerm_cosmosdb_account.this : k => v.identity[0].principal_id }
}
output "cosmosdb_identity_tenant_ids" {
description = "The Tenant IDs associated with each CosmosDB account's Managed Service Identity."
value = { for k, v in azurerm_cosmosdb_account.this : k => v.identity[0].tenant_id }
}
output "cosmosdb_primary_keys" {
description = "The primary keys for each CosmosDB account."
value = { for k, v in azurerm_cosmosdb_account.this : k => v.primary_key }
}
output "cosmosdb_primary_mongodb_connection_strings" {
description = "Primary MongoDB connection strings for each CosmosDB account."
value = { for k, v in azurerm_cosmosdb_account.this : k => v.primary_mongodb_connection_string }
}
output "cosmosdb_primary_readonly_keys" {
description = "The primary read-only keys for each CosmosDB account."
value = { for k, v in azurerm_cosmosdb_account.this : k => v.primary_readonly_key }
}
output "cosmosdb_primary_readonly_mongodb_connection_strings" {
description = "Primary readonly MongoDB connection strings for each CosmosDB account."
value = { for k, v in azurerm_cosmosdb_account.this : k => v.primary_readonly_mongodb_connection_string }
}
output "cosmosdb_primary_readonly_sql_connection_strings" {
description = "Primary readonly SQL connection strings for each CosmosDB account."
value = { for k, v in azurerm_cosmosdb_account.this : k => v.primary_readonly_sql_connection_string }
}
output "cosmosdb_primary_sql_connection_strings" {
description = "Primary SQL connection strings for each CosmosDB account."
value = { for k, v in azurerm_cosmosdb_account.this : k => v.primary_sql_connection_string }
}
output "cosmosdb_read_endpoints" {
description = "A list of read endpoints available for each CosmosDB account."
value = { for k, v in azurerm_cosmosdb_account.this : k => v.read_endpoints }
}
output "cosmosdb_secondary_keys" {
description = "The secondary keys for each CosmosDB account."
value = { for k, v in azurerm_cosmosdb_account.this : k => v.secondary_key }
}
output "cosmosdb_secondary_mongodb_connection_strings" {
description = "Secondary MongoDB connection strings for each CosmosDB account."
value = { for k, v in azurerm_cosmosdb_account.this : k => v.secondary_mongodb_connection_string }
}
output "cosmosdb_secondary_readonly_keys" {
description = "The secondary read-only keys for each CosmosDB account."
value = { for k, v in azurerm_cosmosdb_account.this : k => v.secondary_readonly_key }
}
output "cosmosdb_secondary_readonly_mongodb_connection_strings" {
description = "Secondary readonly MongoDB connection strings for each CosmosDB account."
value = { for k, v in azurerm_cosmosdb_account.this : k => v.secondary_readonly_mongodb_connection_string }
}
output "cosmosdb_secondary_readonly_sql_connection_strings" {
description = "Secondary readonly SQL connection strings for each CosmosDB account."
value = { for k, v in azurerm_cosmosdb_account.this : k => v.secondary_readonly_sql_connection_string }
}
output "cosmosdb_secondary_sql_connection_strings" {
description = "Secondary SQL connection strings for each CosmosDB account."
value = { for k, v in azurerm_cosmosdb_account.this : k => v.secondary_sql_connection_string }
}
output "cosmosdb_write_endpoints" {
description = "A list of write endpoints available for each CosmosDB account."
value = { for k, v in azurerm_cosmosdb_account.this : k => v.write_endpoints }
}