Skip to content

Commit

Permalink
[SELC-5014] feat: Added terraform variables (#282)
Browse files Browse the repository at this point in the history
Co-authored-by: [email protected] <Aiap1955?^@#>
  • Loading branch information
pierpaolodidato89 and [email protected] authored Jun 3, 2024
1 parent 0768713 commit d4def13
Show file tree
Hide file tree
Showing 6 changed files with 26 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,10 @@ app_settings = [
{
name = "ONBOARDING-CDC-MONGODB-WATCH-ENABLED"
value = "false"
},
{
name = "ONBOARDING_FUNCTIONS_URL"
value = "https://selc-d-onboarding-fn.azurewebsites.net"
}
]

Expand All @@ -50,5 +54,6 @@ secrets_names = {
"APPLICATIONINSIGHTS_CONNECTION_STRING" = "appinsights-connection-string"
"MONGODB-CONNECTION-STRING" = "mongodb-connection-string"
"STORAGE_CONNECTION_STRING" = "blob-storage-product-connection-string"
"NOTIFICATION-FUNCTIONS-API-KEY" = "notification-functions-api-key"
}

Original file line number Diff line number Diff line change
Expand Up @@ -54,5 +54,6 @@ secrets_names = {
"APPLICATIONINSIGHTS_CONNECTION_STRING" = "appinsights-connection-string"
"MONGODB-CONNECTION-STRING" = "mongodb-connection-string"
"STORAGE_CONNECTION_STRING" = "blob-storage-product-connection-string"
"NOTIFICATION-FUNCTIONS-API-KEY" = "notification-functions-api-key"
}

Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,17 @@ app_settings = [
{
name = "ONBOARDING-CDC-MONGODB-WATCH-ENABLED"
value = "false"
},
{
name = "ONBOARDING_FUNCTIONS_URL"
value = "https://selc-d-onboarding-fn.azurewebsites.net"
}
]

secrets_names = {
"APPLICATIONINSIGHTS_CONNECTION_STRING" = "appinsights-connection-string"
"MONGODB-CONNECTION-STRING" = "mongodb-connection-string"
"STORAGE_CONNECTION_STRING" = "blob-storage-product-connection-string"
"NOTIFICATION-FUNCTIONS-API-KEY" = "notification-functions-api-key"
}

5 changes: 5 additions & 0 deletions infra/container_apps/onboarding-cdc/env/prod/terraform.tfvars
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,17 @@ app_settings = [
{
name = "ONBOARDING-CDC-MONGODB-WATCH-ENABLED"
value = "false"
},
{
name = "ONBOARDING_FUNCTIONS_URL"
value = "https://selc-d-onboarding-fn.azurewebsites.net"
}
]

secrets_names = {
"APPLICATIONINSIGHTS_CONNECTION_STRING" = "appinsights-connection-string"
"MONGODB-CONNECTION-STRING" = "mongodb-connection-string"
"STORAGE_CONNECTION_STRING" = "blob-storage-product-connection-string"
"NOTIFICATION-FUNCTIONS-API-KEY" = "notification-functions-api-key"
}

Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,16 @@ app_settings = [
{
name = "ONBOARDING-CDC-MONGODB-WATCH-ENABLED"
value = "false"
},
{
name = "ONBOARDING_FUNCTIONS_URL"
value = "https://selc-d-onboarding-fn.azurewebsites.net"
}
]

secrets_names = {
"APPLICATIONINSIGHTS_CONNECTION_STRING" = "appinsights-connection-string"
"MONGODB-CONNECTION-STRING" = "mongodb-connection-string"
"STORAGE_CONNECTION_STRING" = "blob-storage-product-connection-string"
"NOTIFICATION-FUNCTIONS-API-KEY" = "notification-functions-api-key"
}
5 changes: 5 additions & 0 deletions infra/container_apps/onboarding-cdc/env/uat/terraform.tfvars
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,16 @@ app_settings = [
{
name = "ONBOARDING-CDC-MONGODB-WATCH-ENABLED"
value = "false"
},
{
name = "ONBOARDING_FUNCTIONS_URL"
value = "https://selc-d-onboarding-fn.azurewebsites.net"
}
]

secrets_names = {
"APPLICATIONINSIGHTS_CONNECTION_STRING" = "appinsights-connection-string"
"MONGODB-CONNECTION-STRING" = "mongodb-connection-string"
"STORAGE_CONNECTION_STRING" = "blob-storage-product-connection-string"
"NOTIFICATION-FUNCTIONS-API-KEY" = "notification-functions-api-key"
}

0 comments on commit d4def13

Please sign in to comment.