如何使用 ARM 模板在 Azure Functions App 中禁用 ftps/ftp
How to disable ftps/ftp in Azure Functions App using ARM template
我正在使用 ARM 模板部署 Azure Functions 应用程序并希望禁用 ftp/ftps 访问。
设置很容易在门户中找到:
如何找到 属性 或应用设置,以便我可以在 json ARM 模板中配置它?
我已经试过了
- 正在审核Microsoft documentation
- 运行 PowerShell 命令
Get-AzureRmResource
和 Get-AzureRmWebApp
浏览返回的站点对象
- 正在 Azure Resource Explorer
中搜索 属性
- 猜测 属性 名称和测试部署——试错
我希望该设置与 siteConfig 中的类似设置一起存在:
您要查找的 属性 是 ftpsState
。以下是可能的值:
AllAllowed
(默认值)
FtpsOnly
Disabled
我正在使用 ARM 模板部署 Azure Functions 应用程序并希望禁用 ftp/ftps 访问。
设置很容易在门户中找到:
如何找到 属性 或应用设置,以便我可以在 json ARM 模板中配置它?
我已经试过了
- 正在审核Microsoft documentation
- 运行 PowerShell 命令
Get-AzureRmResource
和Get-AzureRmWebApp
浏览返回的站点对象 - 正在 Azure Resource Explorer 中搜索 属性
- 猜测 属性 名称和测试部署——试错
我希望该设置与 siteConfig 中的类似设置一起存在:
您要查找的 属性 是 ftpsState
。以下是可能的值:
AllAllowed
(默认值)FtpsOnly
Disabled