-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove unused variables and update API Management outputs
- Loading branch information
Showing
5 changed files
with
42 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
output "apim_name" { | ||
value = var.enable_apim ? azurerm_api_management.apim[0].name : "" | ||
value = azurerm_api_management.apim.name | ||
} | ||
|
||
output "gateway_url" { | ||
value = var.enable_apim ? azurerm_api_management.apim[0].gateway_url : "" | ||
value = azurerm_api_management.apim.gateway_url | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,44 +1,54 @@ | ||
output "resource_group_name" { | ||
value = "${azurerm_resource_group.rg.name}" | ||
description = "The name of the resource group" | ||
value = azurerm_resource_group.rg.name | ||
description = "The name of the resource group" | ||
} | ||
|
||
output "subscription_id" { | ||
value = "${data.azurerm_subscription.current.subscription_id}" | ||
description = "The subscription ID used" | ||
value = data.azurerm_subscription.current.subscription_id | ||
description = "The subscription ID used" | ||
} | ||
|
||
output "tenant_id" { | ||
value = "${data.azurerm_subscription.current.tenant_id}" | ||
description = "The tenant ID used" | ||
value = data.azurerm_subscription.current.tenant_id | ||
description = "The tenant ID used" | ||
} | ||
|
||
output "storage_account_name" { | ||
value = "${module.st.storage_account_name}" | ||
description = "The name of the storage account" | ||
value = module.st.storage_account_name | ||
description = "The name of the storage account" | ||
} | ||
|
||
output "storage_container_name" { | ||
value = "${module.st.storage_container_name}" | ||
description = "The name of the storage account" | ||
value = module.st.storage_container_name | ||
description = "The name of the storage account" | ||
} | ||
|
||
output "search_service_name" { | ||
value = "${module.search.search_service_name}" | ||
description = "The name of the search service" | ||
value = module.search.search_service_name | ||
description = "The name of the search service" | ||
} | ||
|
||
output "search_service_index_name" { | ||
value = "${module.search.search_index_name}" | ||
description = "The name of the search service index" | ||
value = module.search.search_index_name | ||
description = "The name of the search service index" | ||
} | ||
|
||
output "openai_service_name" { | ||
value = "${module.openai.openai_service_name}" | ||
description = "The name of the openai service" | ||
value = module.openai.openai_service_name | ||
description = "The name of the openai service" | ||
} | ||
|
||
output "embedding_deployment_name" { | ||
value = "${module.openai.embedding_deployment_name}" | ||
description = "The name of the embedding deployment" | ||
} | ||
value = module.openai.embedding_deployment_name | ||
description = "The name of the embedding deployment" | ||
} | ||
|
||
output "aihub_fqdn" { | ||
value = module.ca_aihub.fqdn | ||
description = "The FQDN of the AI Hub service" | ||
} | ||
|
||
output "chat_fqdn" { | ||
value = module.ca_chat.fqdn | ||
description = "The FQDN of the Chat service" | ||
} |