gpt4 book ai didi

azure - 无法在 Azure 中使用 Powershell 创建资源

转载 作者:行者123 更新时间:2023-12-03 03:09:50 24 4
gpt4 key购买 nike

有人可以告诉我为什么每次我尝试在 Azure 中使用 Powershell 创建 NIC 时都会出现图像中显示的错误吗?

NIC

谢谢

最佳答案

您并不是在创建网络接口(interface),而是试图获取一个不存在的网络接口(interface)。要创建 NIC,请使用以下过程:

# Get the Virtual Network 
$VNET = Get-AzureRmVirtualNetwork -Name ‘Demo-vnet’ -ResourceGroupName ‘Demo’

# Get the Subnet Id
$SubnetID = (Get-AzureRmVirtualNetworkSubnetConfig -Name ‘default’ -VirtualNetwork $VNET).Id

# Create the Network Interface
New-AzureRmNetworkInterface -Name "NICFW" -ResourceGroupName "AdatumRG" -Location "East Us" -SubnetId $SubnetID

相应地更改变量并确保 -Location 参数与您的 VNet 位置匹配。

关于azure - 无法在 Azure 中使用 Powershell 创建资源,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40185817/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com