-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy patharmpolicy1.json
143 lines (142 loc) · 3.34 KB
/
armpolicy1.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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
{
"if": {
"anyOf": [
{
"not": {
"anyOf": [
{
"field": "type",
"like": "microsoft.alertsmanagement/smartDetectorAlertRules/*"
},
{
"field": "type",
"like": "Microsoft.Compute/disks/*"
},
{
"field": "type",
"like": "Microsoft.Compute/virtualMachines/*"
},
{
"field": "type",
"like": "Microsoft.Compute/virtualMachines/extensions/*"
},
{
"field": "type",
"like": "microsoft.insights/actiongroups/*"
},
{
"field": "type",
"like": "Microsoft.Insights/components/*"
},
{
"field": "type",
"like": "Microsoft.KeyVault/vaults/*"
},
{
"field": "type",
"like": "Microsoft.MachineLearningServices/workspaces/*"
},
{
"field": "type",
"like": "Microsoft.Network/networkSecurityGroups/*"
},
{
"field": "type",
"like": "Microsoft.Network/publicIPAddresses/*"
},
{
"field": "type",
"like": "Microsoft.Network/virtualNetworks/*"
},
{
"field": "type",
"like": "Microsoft.Storage/storageAccounts/*"
},
{
"field": "type",
"in": ["microsoft.alertsmanagement/smartDetectorAlertRules", "Microsoft.Compute/disks", "Microsoft.Compute/virtualMachines", "Microsoft.Compute/virtualMachines/extensions", "microsoft.insights/actiongroups", "Microsoft.Insights/components", "Microsoft.KeyVault/vaults", "Microsoft.MachineLearningServices/workspaces", "Microsoft.Network/networkSecurityGroups", "Microsoft.Network/publicIPAddresses", "Microsoft.Network/virtualNetworks", "Microsoft.Storage/storageAccounts"]
}
]
}
},
{
"allof": [
{
"field": "type",
"equals": "Microsoft.Compute/disks"
},
{
"not": {
"field": "Microsoft.Compute/disks/Sku.Tier",
"in": ["Standard"]
}
}
]
},
{
"allOf": [
{
"field": "type",
"equals": "Microsoft.Compute/virtualMachines"
},
{
"not": {
"allOf": [
{
"field": "Microsoft.Compute/virtualMachines/imageOffer",
"in": [""]
},
{
"field": "Microsoft.Compute/virtualMachines/imagePublisher",
"in": [""]
},
{
"field": "Microsoft.Compute/virtualMachines/imageSku",
"in": [""]
},
{
"field": "Microsoft.Compute/virtualMachines/sku.name",
"in": ["Standard_DS2_v2"]
}
]
}
}
]
},
{
"allof": [
{
"field": "type",
"equals": "Microsoft.KeyVault/vaults"
},
{
"field": "Microsoft.KeyVault/vaults/sku.name",
"notIn": ["Standard"]
}
]
},
{
"allOf": [
{
"source": "action",
"equals": "Microsoft.Storage/storageAccounts/write"
},
{
"field": "type",
"equals": "Microsoft.Storage/storageAccounts"
},
{
"not":
{
"field": "Microsoft.Storage/storageAccounts/sku.name",
"in": ["StandardLRS"]
}
}
]
},
]
},
"then": {
"effect": "deny"
}
}