forked from Azure/terraform-azurerm-openai
-
Notifications
You must be signed in to change notification settings - Fork 0
/
outputs.tf
33 lines (28 loc) · 1.1 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
output "openai_endpoint" {
description = "The endpoint used to connect to the Cognitive Service Account."
value = azurerm_cognitive_account.this.endpoint
}
output "openai_id" {
description = "The ID of the Cognitive Service Account."
value = azurerm_cognitive_account.this.id
}
output "openai_primary_key" {
description = "The primary access key for the Cognitive Service Account."
sensitive = true
value = azurerm_cognitive_account.this.primary_access_key
}
output "openai_secondary_key" {
description = "The secondary access key for the Cognitive Service Account."
sensitive = true
value = azurerm_cognitive_account.this.secondary_access_key
}
output "openai_subdomain" {
description = "The subdomain used to connect to the Cognitive Service Account."
value = azurerm_cognitive_account.this.custom_subdomain_name
}
output "private_ip_addresses" {
description = "A map dictionary of the private IP addresses for each private endpoint."
value = {
for key, pe in azurerm_private_endpoint.this : key => pe.private_service_connection[0].private_ip_address
}
}