-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathvariables.tf
More file actions
134 lines (108 loc) · 2.77 KB
/
variables.tf
File metadata and controls
134 lines (108 loc) · 2.77 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
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
# modules/organization/variables.tf
variable "region" {
description = "Main AWS Region to deploy resources"
type = string
}
variable "regions" {
description = "AWS Regions to deploy discovery and scanning resources"
type = list(string)
}
variable "organizational_unit_id" {
description = "AWS Organizational unit (OU) ID to deploy resources on"
type = string
}
variable "additional_tags" {
description = "Additional tags to be sent to the Autoconnect API"
type = map(string)
default = {}
}
variable "aqua_tenant_id" {
description = "Aqua Tenant ID"
type = string
}
variable "aqua_random_id" {
description = "Aqua Random ID"
type = string
}
variable "aqua_worker_role_arn" {
description = "Aqua Worker Role ARN"
type = string
}
variable "aqua_bucket_name" {
description = "Aqua Bucket Name"
type = string
}
variable "aqua_api_key" {
description = "Aqua API Key"
type = string
}
variable "aqua_api_secret" {
description = "Aqua API Secret"
type = string
}
variable "aqua_volscan_api_token" {
description = "Aqua Volume Scanning API Token"
type = string
}
variable "aqua_group_name" {
description = "Aqua Group ID"
type = string
}
variable "aqua_session_id" {
description = "Aqua Session ID"
type = string
}
variable "custom_cspm_role_name" {
description = "Custom CSPM role Name"
type = string
}
variable "custom_agentless_role_name" {
description = "Custom Agentless role Name"
type = string
}
variable "custom_processor_lambda_role_name" {
description = "Custom Processor lambda role Name"
type = string
}
variable "custom_bucket_name" {
description = "Custom bucket Name"
type = string
}
variable "custom_vpc_name" {
description = "Custom VPC Name"
type = string
}
variable "custom_vpc_subnet1_name" {
description = "Custom VPC Subnet 1 Name"
type = string
}
variable "custom_vpc_subnet2_name" {
description = "Custom VPC Subnet 2 Name"
type = string
}
variable "custom_vpc_subnet_route_table1_name" {
description = "Custom VPC Route Table 1 Name"
type = string
}
variable "custom_vpc_subnet_route_table2_name" {
description = "Custom VPC Route Table 2 Name"
type = string
}
variable "custom_internet_gateway_name" {
description = "Custom Internet Gateway Name"
type = string
}
variable "custom_security_group_name" {
description = "Custom Security Group Name"
type = string
}
variable "custom_cspm_regions" {
description = "Custom CSPM regions"
type = string
default = ""
}
variable "volume_scanning_deployment" {
description = "Toggle to deploy Volume Scanning resources"
type = string
default = "true"
}