microsoft / cobalt

Infrastructure turn-key solution for app service workloads
MIT License
116 stars 78 forks source link

[ ASE ] Allow for app settings to be configured through template variables #363

Closed erikschlegel closed 4 years ago

erikschlegel commented 4 years ago

All Submissions:


What is the current behavior?


Currently, app service settings attributes are fixed properties controlled through the app service TF module.

Issue Number: #295

What is the new behavior?


Technical operators are now able to configure App Setting key value pairs through the app_service_settings variable via the app service terraform module.

Does this introduce a breaking change?


After using this configuration within the hello world template.

app_service_settings = {
  app_setting1 = "hw_setting_value",
  app_setting2 = "hw_setting_value"
}

Here's the settings from a deployed app service in azure portal

image