Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我们正在使用 Terraform 将 Web 应用程序部署到 Azure,并且希望不再使用 web.config 进行配置设置。我相信我们可以在部署时使用资源app_settings上的参数来实现这些,azurerm_app_service但试图找到应该如何正确格式化的示例。
app_settings
azurerm_app_service
是应用服务的app_settings应用设置键值对。
它的格式:
app_settings { "SOME_KEY" = "some-value" }
更多细节,你可以参考这篇文章。
现在有一个=
app_settings = { "SOME_KEY" = "some-value" }