1

有没有办法通过 az cli 或 azure powershell 在 Azure 中检索 oms 工作区 ID 和密钥?我正在部署 k8s 集群(在 Azure 中)并自动希望通过 helm 部署 oms 容器代理。我需要一个工作区 ID 和密钥,我不想手动创建工作区并手动将 ID 和密钥放入我的发布作业:)。

4

2 回答 2

1

您可以使用 Azure Power Shell 来执行此操作,例如:

$rgname = "shuioms"
$omsname = "shuioms"
##get workspaceid
$oms=Get-AzureRmOperationalInsightsWorkspace -ResourceGroupName shuioms -Name shuioms
$workspaceID = $oms.CustomerId
#get oms key
$key=Get-AzureRmOperationalInsightsWorkspaceSharedKeys -ResourceGroupName shuioms -Name shuioms
于 2018-02-27T01:29:56.527 回答
1

另一个非常方便查找 Azure 资源 ID 的选项是资源浏览器。将浏览器导航到https://resources.azure.com/

于 2020-04-25T20:58:44.397 回答