-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvariables_security.tf
More file actions
69 lines (61 loc) · 2.44 KB
/
variables_security.tf
File metadata and controls
69 lines (61 loc) · 2.44 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
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
variable "webfilter_restricted_categories" {
description = "List of website categories that should be blocked. Names need to match FortiGuard categories."
type = list(string)
default = []
# example = ["Gambling"]
# blocked in unisase-sia profile
}
variable "webfilter_restricted_sites" {
description = "List of websites that should be blocked"
type = list(string)
default = []
# example = ["nytimes.com"]
# blocked in unisase-sia profile
}
variable "app_restricted_categories" {
description = "List of app categories that should be blocked. Names need to match FortiGuard categories."
type = list(string)
default = []
# example = ["Social.Media"]
# blocked in unisase-sia and non-compliant profiles
}
variable "app_critical_apps" {
description = "Applications that are considered critical for the corporate and should be allowed only to 'compliant' users."
type = list(string)
default = []
# example = ["Github", "Amazon.AWS", Microsoft.365", "Salesforce"]
# blocked in non-compliant security profile
}
variable "spa_resources" {
description = "List of corporate resources that remote users need access to"
type = list(string)
default = []
# example = ["10.0.0.7/32", "10.1.100.0/24", "10.2.0.0/8"]
# create individual host object for each of the item from the list, and then an address group that consildates all created objects inside it.
}
variable "bor_resources" {
description = "List of subnets behind onramp locations"
type = list(string)
default = []
# example = ["10.8.1.0/24", "10.8.101.0/24"]
# create individual host object for each of the item from the list, and then an address group that consildates all created objects inside it.
}
variable "ot_resources" {
description = "List of devices (userless) in branch on-ramp locations"
type = list(string)
default = []
# example = ["10.10.1.20/32"]
# create individual host object for each of the item from the list, and then an address group that consildates all created objects inside it.
}
variable "auth_resources" {
description = "List of servers used for authentication"
type = list(string)
default = []
# example = ["10.21.0.1/32", "10.21.0.2/32"]
}
variable "ipam_resources" {
description = "List of private subnets used in private networks"
type = list(string)
default = []
# example = ["10.0.0.0/8", "172.16.0.0/24"]
}