Skip to content

Commit

Permalink
feat: Add Status Page Improvement API Key for Backoffice Helpdesk (#2627
Browse files Browse the repository at this point in the history
)

add Status Page Improvement API Key for Backoffice Helpdesk
  • Loading branch information
pasqualespica authored Dec 4, 2024
1 parent 21a9dee commit c43e878
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions src/domains/selfcare-app/04_apim_backoffice_external.tf
Original file line number Diff line number Diff line change
Expand Up @@ -70,3 +70,17 @@ module "apim_selfcare_backoffice_helpdesk_product" {

policy_xml = file("./api_product/_base_policy.xml")
}

# SubKey 4 https://uptime.betterstack.com/team/263223/monitors recover maintenance
# Status Page Improvement https://pagopa.atlassian.net/wiki/x/AoBBSQ
resource "azurerm_api_management_subscription" "status_page_improvement_api_key_subkey" {
count = var.env_short == "p" ? 1 : 0

api_management_name = local.pagopa_apim_name
resource_group_name = local.pagopa_apim_rg

product_id = module.apim_selfcare_backoffice_helpdesk_product.id
display_name = "Status Page Improvement API Key for Backoffice Helpdesk"
allow_tracing = false
state = "active"
}

0 comments on commit c43e878

Please sign in to comment.