知識檢查

已完成

請考慮下列 Bicep 檔案:

main.bicep

targetScope = 'managementGroup'

module myModule 'module.bicep' = {
  scope: subscription('f0750bbe-ea75-4ae5-b24d-a92ca601da2c')
  name: 'my-module'
}

module.bicep:

targetScope = 'subscription'

resource policyDefinition 'Microsoft.Authorization/policyDefinitions@2020-09-01' = {
  name: 'my-policy'
  // (other properties related to the policy definition)
}
1.

當您提交 main.bicep 檔案的部署時,會發生什麼情況?

2.

您必須建立將在整個組織中運作的角色定義。 您決定使用 Bicep 範本來部署該角色定義。 您應該針對檔案使用哪個 targetScope 值?

3.

下列敘述何者正確?