-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsentinel.hcl
More file actions
41 lines (31 loc) · 1.02 KB
/
sentinel.hcl
File metadata and controls
41 lines (31 loc) · 1.02 KB
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
policy "always-true-111221122" {
source = "./always-true-1.sentinel"
enforcement_level = "advisory"
}
# Compliance Policies
policy "require-resource-tagging" {
source = "./policies/compliance/require-resource-tagging.sentinel"
enforcement_level = "advisory"
}
# Cost Management Policies
policy "enforce-instance-limits" {
source = "./policies/cost-management/enforce-instance-limits.sentinel"
enforcement_level = "advisory"
}
policy "prevent-expensive-storage" {
source = "./policies/cost-management/prevent-expensive-storage.sentinel"
enforcement_level = "advisory"
}
# Security Policies
policy "enforce-https-tls" {
source = "./policies/security/enforce-https-tls.sentinel"
enforcement_level = "advisory"
}
policy "require-encryption-at-rest" {
source = "./policies/security/require-encryption-at-rest.sentinel"
enforcement_level = "advisory"
}
policy "restrict-public-access" {
source = "./policies/security/restrict-public-access.sentinel"
enforcement_level = "advisory"
}