azure 限制/拒绝允许的资源位置

i2loujxw  于 2022-12-04  发布在  其他
关注(0)|答案(1)|浏览(116)

我希望分配资源策略,以限制允许的位置,资源可以部署,这样我就可以只使用特定的资源为我的工作和成本将是低的。我发现This,但这是像手动限制我需要它在脚本的方式。
我在网络上搜索了一下,没有找到相关的文档。有谁能帮我一下吗,先谢谢了。

nbnkbykc

nbnkbykc1#

  • 我已遵循以下配置拒绝允许的资源位置 *

转到***门户***→并搜索***策略***和***策略定义***

我已经填写了相应的字段,并使用下面的脚本拒绝分配的位置。

{ 
"properties": { 
"displayName": "Allowed resource types", 
"policyType": "BuiltIn",  
"mode": "Indexed",  
"description": "This policy enables you to specify the resource types that your organization can deploy. Only resource types that support 'tags' and 'location' will be affected by this policy. To restrict all resources please duplicate this policy and change the 'mode' to 'All'.", 
"metadata": { 
"version": "1.0.0",    
"category": "General"  
},   
"parameters": { 
"listOfResourceTypesAllowed": { 
"type": "Array", 
"metadata": {   
"description": "The list of resource types that can be deployed.",  
"displayName": "Allowed resource types",  
"strongType": "resourceTypes"   
}   
} 
}, 
"policyRule": {
"if": {
"not": {
"field": "type",
"in": "[parameters('listOfResourceTypesAllowed')]"
}
},
"then": {
"effect": "deny"
}
}

我已分配策略,当我签入分配时,我可以看到

当我选中以创建具有不允许位置的资源组时,我无法创建

相关问题