Skip to content

Commit

Permalink
outputs fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Krusty93 committed Jan 17, 2024
1 parent e006f90 commit 9ede14e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/domains/citizen-auth-common/03_apim_v2.tf
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ resource "azurerm_key_vault_secret" "fast_login_subscription_key_v2" {
####################################################################################

data "azurerm_linux_web_app" "appservice_fims" {
name = "${local.product}-${var.domain}-${var.location_short}-${var.instance}-app-fims"
name = "${local.product}-${var.domain}-${var.location_short}-${var.env}01-app-fims"
resource_group_name = "${local.common_project}-fims-rg"
}

Expand Down Expand Up @@ -173,7 +173,7 @@ module "api_fims_admin" {

path = ""
protocols = ["https"]
product_ids = [module.apim_product_fims_admin[0].product_id]
product_ids = [module.apim_product_fims_admin.product_id]

service_url = format("https://%s", data.azurerm_linux_web_app.appservice_fims.default_hostname)

Expand Down Expand Up @@ -219,7 +219,7 @@ module "api_fims_public" {

path = ""
protocols = ["https"]
product_ids = [module.apim_product_fims_public[0].product_id]
product_ids = [module.apim_product_fims_public.product_id]

service_url = format("https://%s", data.azurerm_linux_web_app.appservice_fims.default_hostname)

Expand Down

0 comments on commit 9ede14e

Please sign in to comment.