Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

New Policy (Azure Redis Cache): Azure Redis Cache should supports 'Standard replication' #449

Merged
merged 4 commits into from
May 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
{
"name": "8fefe846-bf48-4882-a717-a451275655ef",
"type": "Microsoft.Authorization/policyDefinitions",
"properties": {
"displayName": "Azure Redis Cache should supports 'Standard replication'",
"description": "Use 'Standard replication' in order to have an a high availability architecture that ensures your managed instance is functioning, even when outages affect the underlying virtual machines (VMs)",
"metadata": {
"version": "1.0.0",
"category": "Cache"
},
"mode": "Indexed",
"parameters": {
"effect": {
"type": "String",
"metadata": {
"displayName": "Effect",
"description": "Deny, Audit or Disabled the execution of the Policy"
},
"allowedValues": [
"Deny",
"Audit",
"Disabled"
],
"defaultValue": "Audit"
}
},
"policyRule": {
"if": {
"allOf": [
{
"field": "type",
"equals": "Microsoft.Cache/Redis"
},
{
"field": "Microsoft.Cache/Redis/sku.family",
"equals": "C"
},
{
"field": "Microsoft.Cache/Redis/sku.name",
"equals": "Basic"
}
]
},
"then": {
"effect": "[parameters('effect')]"
}
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"effect": {
"type": "String",
"metadata": {
"displayName": "Effect",
"description": "Deny, Audit or Disabled the execution of the Policy"
},
"allowedValues": [
"Deny",
"Audit",
"Disabled"
],
"defaultValue": "Audit"
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"if": {
"allOf": [
{
"field": "type",
"equals": "Microsoft.Cache/Redis"
},
{
"field": "Microsoft.Cache/Redis/sku.family",
"equals": "C"
},
{
"field": "Microsoft.Cache/Redis/sku.name",
"equals": "Basic"
}
]
},
"then": {
"effect": "[parameters('effect')]"
}
}
Loading