Skip to content

Commit

Permalink
up
Browse files Browse the repository at this point in the history
  • Loading branch information
Pwd9000-ML committed Jan 23, 2024
1 parent ee50b2f commit 5e4fad6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions 06_librechat_app.tf
Original file line number Diff line number Diff line change
Expand Up @@ -161,10 +161,10 @@ resource "azurerm_dns_cname_record" "cname_record" {
resource "azurerm_app_service_custom_hostname_binding" "hostname_binding" {
count = var.libre_app_custom_domain_create == true ? 1 : 0
hostname = "${var.librechat_app_custom_domain_name}.${var.librechat_app_custom_dns_zone_name}"
app_service_name = var.app_service_name
app_service_name = var.libre_app_name
resource_group_name = azurerm_resource_group.az_openai_rg.name

depends_on = [azurerm_dns_cname_record.cname_record, azurerm_service_plan.az_openai_asp ]
depends_on = [azurerm_dns_cname_record.cname_record, azurerm_linux_web_app.librechat ]
}

resource "azurerm_app_service_managed_certificate" "libre_app_cert" {
Expand Down

0 comments on commit 5e4fad6

Please sign in to comment.