创建 Azure NAT 网关时 sku 字段的值应该是多少?

What should be the value of the sku field when creating Azure NAT Gateway?

我想创建一个 NAT 网关,参数列表中有一个名为 SKU 的参数。这是相同的代码

$nat = @{
        ResourceGroupName = $coreResourceGroupName
        Name = $natGatewayName
        Sku = 'Standard'
        Location = $location
        PublicIpAddress = $publicIP
    }
$natGateway = New-AzNatGateway @nat

现在想知道能不能用'Premium'代替'Standard' 对于 Sku 字段。我用谷歌搜索并看到了多个例子,但我到处都看到他们只使用 'Standard'

那么创建NAT网关时参数'Sku'可接受的值是多少?

So what are the acceptable values of the paramenter _**'Sku'**_ while creating NAT gateway?

是的,NAT 仅兼容 标准 SKU public IP,public IP 前缀,以及负载均衡器资源。 不支持使用基本和其他 SKU 的

您可以参考此 MSFT-Document 了解限制。

您还可以参考此 Terraform-Document,它是 azure powershell 的包装器,其中明确提到 NAT SKU 字段仅支持 Standard