Skip to content

Commit

Permalink
Disabled functions (#1271)
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeldisaro authored Oct 30, 2024
1 parent cd49366 commit 00c9580
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/domains/cgn/_modules/functions_apps/function_app_cgn.tf
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ module "function_cgn" {

app_settings = merge(
local.function_cgn.app_settings_common, {
"AzureWebJobs.ContinueEycaActivation.Disabled" = "0",
"AzureWebJobs.UpdateExpiredCgn.Disabled" = "0",
"AzureWebJobs.UpdateExpiredEyca.Disabled" = "0"
"AzureWebJobs.ContinueEycaActivation.Disabled" = "1",
"AzureWebJobs.UpdateExpiredCgn.Disabled" = "1",
"AzureWebJobs.UpdateExpiredEyca.Disabled" = "1"
}
)

Expand Down

0 comments on commit 00c9580

Please sign in to comment.