This repository has been archived by the owner on Oct 12, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 110
/
Copy pathdeploy.json
119 lines (119 loc) · 5.13 KB
/
deploy.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"$schema": "https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"policyEffect": {
"type": "string",
"metadata": {
"description": "String value that has the following format [parameters('effect')], this is the string that gets passed to the Policy definition."
}
},
"effect": {
"type": "string",
"defaultValue": "Audit",
"metadata": {
"description": "Policy effect."
}
},
"resourceGroup": {
"type": "string",
"metadata": {
"description": "Resource group name used as part of the Policy assignment."
}
},
"resourceGroupLocation": {
"type": "string",
"metadata": {
"description": "Resource group location used as part of the Policy assignment."
}
}
},
"variables": {
"storageAccountEncryptionPolicyDefinitionName": "[guid('storageEncryptionDefinition')]",
"storageAccountEncryptionPolicyAssignmentName": "[guid('storageEncryptionAssignment')]"
},
"resources": [
{
"name": "[variables('storageAccountEncryptionPolicyDefinitionName')]",
"type": "Microsoft.Authorization/policyDefinitions",
"apiVersion": "2018-05-01",
"properties": {
"policyType": "Custom",
"mode": "All",
"displayName": "Analyzes the use of Storage Account encryption",
"description": "This Policy evaluates if a Storage Account has Blob Encryption enabled or not.",
"policyRule": {
"if": {
"allOf": [
{
"field": "type",
"equals": "Microsoft.Storage/storageAccounts"
},
{
"not": {
"field": "Microsoft.Storage/storageAccounts/enableBlobEncryption",
"equals": "true"
}
}
]
},
"then": {
"effect": "[parameters('policyEffect')]"
}
},
"metadata": {},
"parameters": {
"effect": {
"type": "string",
"metadata": {
"description": "Policy effect to be applied."
}
}
}
}
},
{
"type": "Microsoft.Resources/deployments",
"apiVersion": "2018-05-01",
"resourceGroup": "[parameters('resourceGroup')]",
"name": "[guid(subscription().id, 'PolicyAssignment', variables('storageAccountEncryptionPolicyDefinitionName'))]",
"dependsOn": [
"[variables('storageAccountEncryptionPolicyDefinitionName')]"
],
"properties": {
"mode": "Incremental",
"template":{
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {},
"variables": {},
"metadata": "resourceGroup() function not available within subscription deployment",
"resources": [
{
"name": "[variables('storageAccountEncryptionPolicyAssignmentName')]",
"type": "Microsoft.Authorization/policyAssignments",
"apiVersion": "2018-05-01",
"location": "[parameters('resourceGroupLocation')]",
"properties": {
"displayName": "Analyzes the use of Storage Account encryption",
"policyDefinitionId": "[resourceId('Microsoft.Authorization/policyDefinitions', variables('storageAccountEncryptionPolicyDefinitionName'))]",
"scope": "[concat('/subscriptions/', subscription().subscriptionId, '/resourceGroups/', parameters('resourceGroup'))]",
"notScopes": [],
"parameters": {
"effect": {
"value": "[parameters('effect')]"
}
},
"description": "This Policy evaluates if a Storage Account has Blob Encryption enabled or not.",
"metadata": {}
}
}
],
"outputs": {}
},
"parameters": {}
}
}
],
"outputs": {}
}