Skip to content

Commit

Permalink
[SIW-1879] Enable wallet routes (#1347)
Browse files Browse the repository at this point in the history
  • Loading branch information
silvicir authored Dec 4, 2024
1 parent 23b5ebe commit a2a079f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/common/_modules/apim/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,9 @@ module "apim_v2" {

autoscale = {
enabled = true
default_instances = 3
minimum_instances = 2
maximum_instances = 6
default_instances = var.migration ? 1 : 3
minimum_instances = var.migration ? 1 : 2
maximum_instances = var.migration ? 1 : 6
scale_out_capacity_percentage = 50
scale_out_time_window = "PT3M"
scale_out_value = "1"
Expand Down
2 changes: 1 addition & 1 deletion src/common/_modules/app_backend/app_settings.tf
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ locals {
FF_IO_SIGN_ENABLED = 1
FF_IO_FIMS_ENABLED = 1
FF_IO_WALLET_ENABLED = 1
FF_IO_WALLET_TRIAL_ENABLED = 1
FF_IO_WALLET_TRIAL_ENABLED = 0

FF_ROUTING_PUSH_NOTIF = "ALL" # possible values are: BETA, CANARY, ALL, NONE
FF_ROUTING_PUSH_NOTIF_BETA_TESTER_SHA_LIST = data.azurerm_key_vault_secret.app_backend_APP_MESSAGES_BETA_FISCAL_CODES.value
Expand Down

0 comments on commit a2a079f

Please sign in to comment.