我正在尝试创建一个empty ASP.NET 5 WepApplication,并托管它azure,有一个我无法理解或解决的问题,create app service dialogue似乎没有检索任何东西(它在几分钟之前做过)no Subscriptions,no Resource Group,no AppServicePlan,no nothing,其中一些字段甚至无法编辑,因此Create Button始终禁用,因此无法在App Services中创建Wep App.
请注意,我输入了我的凭据并与我的电子邮件相关联,该电子邮件订阅了Azure以及所有订阅.
以下是一些描述这个的屏幕截图:
问题 :
asp.net azure visual-studio app-service-environment azure-web-app-service
resource "azurerm_monitor_autoscale_setting" "test" {
name = "AutoscaleSetting"
resource_group_name = "${azurerm_resource_group.main.name}"
location = "${azurerm_resource_group.main.location}"
target_resource_id = "${azurerm_app_service_plan.main.id}"
profile {
name = "defaultProfile"
capacity {
default = 1
minimum = 1
maximum = 10
}
rule {
metric_trigger {
metric_name = "Percentage CPU"
metric_resource_id = "${azurerm_app_service_plan.main.id}"
time_grain = "PT1M"
statistic = "Average"
time_window = "PT5M"
time_aggregation = "Average"
operator = "GreaterThan"
threshold = 80
}
scale_action {
direction = "Increase"
type = "ChangeCount"
value = "1"
cooldown = "PT1M"
}
}
rule …Run Code Online (Sandbox Code Playgroud) azure app-service-environment azure-app-service-plans azure-web-app-service terraform-provider-azure
Azure Functions 可以部署在 VNet 内吗?
如果我在 VNet 中创建了一个应用服务环境,然后在创建函数时选择了该应用服务计划,这是否意味着 Azure 函数部署在 VNet 内并且具有与 VNet 定义的相同的限制等?