-
Notifications
You must be signed in to change notification settings - Fork 26
/
outputs.tf
34 lines (27 loc) · 904 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
30
31
32
33
34
# output "mongo_connection_string" {
# description = "Connection string for the MongoDB"
# value = azurerm_cosmosdb_account.librechat.connection_strings[0]
# sensitive = true
# }
output "ressource_group_name" {
description = "name of the created ressource group"
value = azurerm_resource_group.this.name
}
output "libre_chat_url" {
value = "${azurerm_linux_web_app.librechat.name}.azurewebsites.net"
}
output "meilisearch_url" {
value = "${azurerm_linux_web_app.meilisearch.name}.azurewebsites.net"
}
output "azure_openai_api_key" {
value = module.openai.openai_primary_key
sensitive = true
}
output "azure_openai_endpoint" {
value = module.openai.openai_endpoint
sensitive = true
}
# output "meilisearch_master_key" {
# description = "MeiliSearch Master Key"
# value = random_string.meilisearch_master_key
# }