Json |
{
"properties": {
"displayName": "[Preview]: Certificates should be issued by the specified non-integrated certificate authority",
"policyType": "BuiltIn",
"mode": "Microsoft.KeyVault.Data",
"description": "Manage your organizational compliance requirements by specifying the custom or internal certificate authorities that can issue certificates in your key vault.",
"metadata": {
"version": "2.0.0-preview",
"category": "Key Vault",
"preview": true
},
"parameters": {
"caCommonName": {
"type": "String",
"metadata": {
"displayName": "[Preview]: The common name of the certificate authority",
"description": "The common name (CN) of the Certificate Authority (CA) provider. For example, for an issuer CN = Contoso, OU = .., DC = .., you can specify Contoso"
}
},
"effect": {
"type": "String",
"metadata": {
"displayName": "[Preview]: Effect",
"description": "'Audit' allows a non-compliant resource to be created, but flags it as non-compliant. 'Deny' blocks the resource creation. 'Disable' turns off the policy."
},
"allowedValues": [
"audit",
"deny",
"disabled"
],
"defaultValue": "audit"
}
},
"policyRule": {
"if": {
"allOf": [
{
"field": "type",
"equals": "Microsoft.KeyVault.Data/vaults/certificates"
},
{
"field": "Microsoft.KeyVault.Data/vaults/certificates/issuer.commonName",
"notContains": "[parameters('caCommonName')]"
}
]
},
"then": {
"effect": "[parameters('effect')]"
}
}
},
"id": "/providers/Microsoft.Authorization/policyDefinitions/a22f4a40-01d3-4c7d-8071-da157eeff341",
"type": "Microsoft.Authorization/policyDefinitions",
"name": "a22f4a40-01d3-4c7d-8071-da157eeff341"
}
|