-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
61 lines (55 loc) · 1.4 KB
/
variables.tf
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
variable "region" {
description = "AWS Region"
type = string
}
variable "namespace" {
description = "Default Namespace for Resources"
default = "hb-sec"
type = string
}
variable "environment" {
description = "Environment"
type = string
}
variable "vpc_cidr" {
description = "VPC CIDR Block"
type = string
}
variable "public_subnet_cidrs" {
description = "List of Public Subnet CIDR Blocks"
type = list(string)
}
variable "private_subnet_cidrs" {
description = "List of Public Subnet CIDR Blocks"
type = list(string)
}
variable "database_subnet_cidrs" {
description = "List of Public Subnet CIDR Blocks"
type = list(string)
}
variable "aws_waf_rulesets" {
description = "List of AWS Managed Rule Sets and Excluded rules"
default = {
AWSManagedRulesCommonRuleSet = {
rule_action_override = {}
},
"AWSManagedRulesLinuxRuleSet" = {
rule_action_override = {}
},
"AWSManagedRulesSQLiRuleSet" = {
rule_action_override = {}
},
"AWSManagedRulesPHPRuleSet" = {
rule_action_override = {}
},
"AWSManagedRulesBotControlRuleSet" = {
rule_action_override = {}
},
"AWSManagedRulesKnownBadInputsRuleSet" = {
rule_action_override = {}
},
"AWSManagedRulesAmazonIpReputationList" = {
rule_action_override = {}
},
}
}