Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[SFEQS-1382] Update io-sign function node version to 18 #681

Merged
merged 6 commits into from
Sep 25, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/domains/sign/io_sign_issuer_func.tf
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ module "io_sign_issuer_func" {

health_check_path = "/api/v1/sign/info"

node_version = "16"
node_version = "18"
runtime_version = "~4"
always_on = true

Expand Down Expand Up @@ -95,7 +95,7 @@ module "io_sign_issuer_func_staging_slot" {
storage_account_name = module.io_sign_issuer_func.storage_account.name
storage_account_access_key = module.io_sign_issuer_func.storage_account.primary_access_key

node_version = "16"
node_version = "18"
runtime_version = "~4"
always_on = true
application_insights_instrumentation_key = data.azurerm_application_insights.application_insights.instrumentation_key
Expand Down
4 changes: 2 additions & 2 deletions src/domains/sign/io_sign_support_func.tf
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ module "io_sign_support_func" {
always_on = true

runtime_version = "~4"
node_version = "16"
node_version = "18"

app_service_plan_info = {
kind = "Linux"
Expand Down Expand Up @@ -68,7 +68,7 @@ module "io_sign_support_func_staging_slot" {

runtime_version = "~4"
always_on = true
node_version = "16"
node_version = "18"
application_insights_instrumentation_key = data.azurerm_application_insights.application_insights.instrumentation_key

app_settings = local.io_sign_support_func.app_settings
Expand Down
4 changes: 2 additions & 2 deletions src/domains/sign/io_sign_user_func.tf
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ module "io_sign_user_func" {

health_check_path = "/api/v1/sign/info"

node_version = "16"
node_version = "18"
runtime_version = "~4"
always_on = true

Expand Down Expand Up @@ -99,7 +99,7 @@ module "io_sign_user_func_staging_slot" {
storage_account_name = module.io_sign_user_func.storage_account.name
storage_account_access_key = module.io_sign_user_func.storage_account.primary_access_key

node_version = "16"
node_version = "18"
runtime_version = "~4"
always_on = true
application_insights_instrumentation_key = data.azurerm_application_insights.application_insights.instrumentation_key
Expand Down