如何在Azure中检索SQL Server的组ID?
我想使用“专用端点连接”的预览技术。至 为此,在将SQL Server添加为目标时,我需要配置一个组ID。
该文档将组ID描述为:“从该专用端点应连接到的远程资源中获得的组的ID。”
我尝试了MSDN页面,找到了MSFT(MyronFanQiu)的测试脚本,该脚本创建了Loadbalancer并开始对其进行调整。 发现我使用的子网必须清除网络策略。
需要Az 2.0.72才能工作。
az login
az account set --subscription $subscriptionid
#Clean the subnet
az network vnet subnet update -g $rg -n $subnet1 --vnet-name $vnet --disable-private-endpoint-network-policies --disable-private-link-service-network-policies --verbose
#Create the link-services
$pls1 = az network private-link-service create -g $rg -n $lks1 --vnet-name $vnet --subnet $subnet1 --lb-name $lb --lb-frontend-ip-configs LoadBalancerFrontEnd -l $location
az network private-endpoint create -g $rg -n $pe --vnet-name $vnet --subnet $subnet1 --private-connection-resource-id $ResourceID --connection-name tttt -l $location --group-id $ResourceID
az network private-endpoint update -g $rg -n $pe --request-message "Accept please"
az network private-endpoint list
#Clean up
az network private-link-service delete --ids /subscriptions/$($subscriptionid)/resourceGroups/$($rg)/providers/Microsoft.Network/privateLinkServices/$lks1
az network private-link-service list
错误:IncorrectPrivateLinkServiceConnectionGroupId-私有链接服务连接组ID对于Azure SQL DB不正确 az:该命令组处于预览状态。在将来的版本中可能会更改/删除它。
答案 0 :(得分:0)
预览-由于缺少PowerShell的命令,它尚不可能(尚未): https://github.com/Azure/azure-cli/issues/10505
用于文档;请查看https://docs.microsoft.com/en-us/cli/azure/network/private-link-service?view=azure-cli-latest。