This repository has been archived by the owner on Oct 19, 2022. It is now read-only.
forked from cloudposse/terraform-aws-firewall-manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
648 lines (635 loc) · 26.5 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
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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
variable "admin_account_id" {
type = string
description = "The AWS account ID to associate to associate with AWS Firewall Manager as the AWS Firewall Manager administrator account. This can be an AWS Organizations master account or a member account. Defaults to the current account."
default = null
}
variable "admin_account_enabled" {
type = bool
description = "Resource for aws_fms_admin_account is enabled and will be created or destroyed"
default = true
}
variable "firehose_enabled" {
type = bool
description = "Create a Kinesis Firehose destination for WAF_V2 Rules. Conflicts with `firehose_arn`"
default = false
}
variable "firehose_arn" {
type = string
description = "Kinesis Firehose ARN used to create a Kinesis Firehose destination for WAF_V2 Rules. Conflicts with `firehose_enabled`"
default = null
}
variable "security_groups_common_policies" {
type = list(object({
name : string,
delete_all_policy_resources : bool,
exclude_resource_tags : bool,
remediation_enabled : bool,
resource_type_list : list(string),
resource_type : string,
resource_tags : map(string),
exclude_account_ids : list(string),
include_account_ids : list(string),
policy_data : object({
revert_manual_security_group_changes : bool
exclusive_resource_security_group_management : bool
apply_to_all_ec2_instance_enis : bool
security_groups : list(string),
}),
}))
default = []
description = <<-DOC
List of Security Groups Common Policies
name:
The friendly name of the AWS Firewall Manager Policy.
delete_all_policy_resources:
Whether to perform a clean-up process.
Defaults to `true`.
exclude_resource_tags:
A boolean value, if `true` the tags that are specified in the `resource_tags` are not protected by this policy.
If set to `false` and `resource_tags` are populated, resources that contain tags will be protected by this policy.
Defaults to `false`.
remediation_enabled:
A boolean value, indicates if the policy should automatically applied to resources that already exist in the account.
Defaults to `false`.
resource_type_list:
A list of resource types to protect. Conflicts with `resource_type`.
resource_type:
A resource type to protect. Conflicts with `resource_type_list`.
resource_tags:
A map of resource tags, that if present will filter protections on resources based on the `exclude_resource_tags`.
exclude_account_ids:
A list of AWS Organization member Accounts that you want to exclude from this AWS FMS Policy.
include_account_ids:
A list of AWS Organization member Accounts that you want to include for this AWS FMS Policy.
policy_data:
revert_manual_security_group_changes:
Whether to revert manual Security Group changes.
Defaults to `false`.
exclusive_resource_security_group_management:
Wheter to exclusive resource Security Group management.
Defaults to `false`.
apply_to_all_ec2_instance_enis:
Whether to apply to all EC2 instance ENIs.
Defaults to `false`.
security_groups:
A list of Security Group IDs.
DOC
}
variable "security_groups_usage_audit_policies" {
type = list(object({
name : string,
delete_all_policy_resources : bool,
exclude_resource_tags : bool,
remediation_enabled : bool,
resource_type_list : list(string),
resource_type : string,
resource_tags : map(string),
exclude_account_ids : list(string),
include_account_ids : list(string),
policy_data : object({
coalesce_redundant_security_groups : bool
delete_unused_security_groups : bool
}),
}))
default = []
description = <<-DOC
name:
The friendly name of the AWS Firewall Manager Policy.
delete_all_policy_resources:
Whether to perform a clean-up process.
Defaults to `true`.
exclude_resource_tags:
A boolean value, if `true` the tags that are specified in the `resource_tags` are not protected by this policy.
If set to `false` and `resource_tags` are populated, resources that contain tags will be protected by this policy.
Defaults to `false`.
remediation_enabled:
A boolean value, indicates if the policy should automatically applied to resources that already exist in the account.
Defaults to `false`.
resource_type_list:
A list of resource types to protect. Conflicts with `resource_type`.
resource_type:
A resource type to protect. Conflicts with `resource_type_list`.
resource_tags:
A map of resource tags, that if present will filter protections on resources based on the `exclude_resource_tags`.
exclude_account_ids:
A list of AWS Organization member Accounts that you want to exclude from this AWS FMS Policy.
include_account_ids:
A list of AWS Organization member Accounts that you want to include for this AWS FMS Policy.
policy_data:
delete_unused_security_groups:
Whether to delete unused Security Groups.
Defaults to `false`.
coalesce_redundant_security_groups:
Whether to coalesce redundant Security Groups.
Defaults to `false`.
DOC
}
variable "security_groups_content_audit_policies" {
type = list(object({
name : string,
delete_all_policy_resources : bool,
exclude_resource_tags : bool,
remediation_enabled : bool,
resource_type_list : list(string),
resource_type : string,
resource_tags : map(string),
exclude_account_ids : list(string),
include_account_ids : list(string),
policy_data : object({
security_group_action : bool
security_groups : bool
}),
}))
default = []
description = <<-DOC
List of Security Groups Content Audit Policies
name:
The friendly name of the AWS Firewall Manager Policy.
delete_all_policy_resources:
Whether to perform a clean-up process.
Defaults to `true`.
exclude_resource_tags:
A boolean value, if `true` the tags that are specified in the `resource_tags` are not protected by this policy.
If set to `false` and `resource_tags` are populated, resources that contain tags will be protected by this policy.
Defaults to `false`.
remediation_enabled:
A boolean value, indicates if the policy should automatically applied to resources that already exist in the account.
Defaults to `false`.
resource_type_list:
A list of resource types to protect. Conflicts with `resource_type`.
resource_type:
A resource type to protect. Conflicts with `resource_type_list`.
resource_tags:
A map of resource tags, that if present will filter protections on resources based on the `exclude_resource_tags`.
exclude_account_ids:
A list of AWS Organization member Accounts that you want to exclude from this AWS FMS Policy.
include_account_ids:
A list of AWS Organization member Accounts that you want to include for this AWS FMS Policy.
policy_data:
security_group_action:
For `ALLOW`, all in-scope security group rules must be within the allowed range of the policy's security group rules.
For `DENY`, all in-scope security group rules must not contain a value or a range that matches a rule value or range in the policy security group.
Possible values: `ALLOW`, `DENY`.
security_groups:
A list of Security Group IDs.
DOC
}
variable "shield_advanced_global_policies" {
type = list(object({
name : string,
delete_all_policy_resources : bool,
exclude_resource_tags : bool,
remediation_enabled : bool,
resource_type : string,
resource_tags : map(string),
exclude_account_ids : list(string),
include_account_ids : list(string),
}))
default = []
description = <<-DOC
List of Shield Advanced Policies
name:
The friendly name of the AWS Firewall Manager Policy.
delete_all_policy_resources:
Whether to perform a clean-up process.
Defaults to `true`.
exclude_resource_tags:
A boolean value, if `true` the tags that are specified in the `resource_tags` are not protected by this policy.
If set to `false` and `resource_tags` are populated, resources that contain tags will be protected by this policy.
Defaults to `false`.
remediation_enabled:
A boolean value, indicates if the policy should automatically applied to resources that already exist in the account.
Defaults to `false`.
resource_type_list:
A list of resource types to protect. Conflicts with `resource_type`.
resource_type:
A resource type to protect. Conflicts with `resource_type_list`.
resource_tags:
A map of resource tags, that if present will filter protections on resources based on the `exclude_resource_tags`.
exclude_account_ids:
A list of AWS Organization member Accounts that you want to exclude from this AWS FMS Policy.
include_account_ids:
A list of AWS Organization member Accounts that you want to include for this AWS FMS Policy.
DOC
}
variable "waf_global_policies" {
type = list(object({
name : string,
delete_all_policy_resources : bool,
exclude_resource_tags : bool,
remediation_enabled : bool,
resource_type : string,
resource_tags : map(string),
exclude_account_ids : list(string),
include_account_ids : list(string),
policy_data : object({
default_action : string
rule_groups : list(string)
}),
}))
default = []
description = <<-DOC
List of WAF Policies
name:
The friendly name of the AWS Firewall Manager Policy.
delete_all_policy_resources:
Whether to perform a clean-up process.
Defaults to `true`.
exclude_resource_tags:
A boolean value, if `true` the tags that are specified in the `resource_tags` are not protected by this policy.
If set to `false` and `resource_tags` are populated, resources that contain tags will be protected by this policy.
Defaults to `false`.
remediation_enabled:
A boolean value, indicates if the policy should automatically applied to resources that already exist in the account.
Defaults to `false`.
resource_type_list:
A list of resource types to protect. Conflicts with `resource_type`.
resource_type:
A resource type to protect. Conflicts with `resource_type_list`.
resource_tags:
A map of resource tags, that if present will filter protections on resources based on the `exclude_resource_tags`.
exclude_account_ids:
A list of AWS Organization member Accounts that you want to exclude from this AWS FMS Policy.
include_account_ids:
A list of AWS Organization member Accounts that you want to include for this AWS FMS Policy.
policy_data:
default_action:
The action that you want AWS WAF to take.
Possible values: `ALLOW`, `BLOCK` or `COUNT`.
rule_groups:
A list of rule groups.
DOC
}
variable "waf_v2_global_policies" {
type = list(object({
name : string,
delete_all_policy_resources : bool,
exclude_resource_tags : bool,
remediation_enabled : bool,
resource_type : string,
resource_tags : map(string),
exclude_account_ids : list(string),
include_account_ids : list(string),
policy_data : object({
default_action : string,
override_customer_web_acl_association : bool,
logging_configuration : object({
logDestinationConfigs : list(string),
redactedFields : list(object({
redactedFieldType : string,
redactedFieldValue : string,
})),
}),
pre_process_rule_groups : list(object({
managedRuleGroupIdentifier : object({
vendorName : string,
managedRuleGroupName : string
version : string
versionEnabled : bool
}),
ruleGroupType : string,
ruleGroupArn : string,
overrideAction : map(string),
})),
post_process_rule_groups : list(object({
managedRuleGroupIdentifier : object({
vendorName : string,
managedRuleGroupName : string
version : string
versionEnabled : bool
}),
ruleGroupType : string,
ruleGroupArn : string,
overrideAction : map(string),
}))
}),
}))
default = []
description = <<-DOC
List of WAF v2 Policies
name:
The friendly name of the AWS Firewall Manager Policy.
delete_all_policy_resources:
Whether to perform a clean-up process.
Defaults to `true`.
exclude_resource_tags:
A boolean value, if `true` the tags that are specified in the `resource_tags` are not protected by this policy.
If set to `false` and `resource_tags` are populated, resources that contain tags will be protected by this policy.
Defaults to `false`.
remediation_enabled:
A boolean value, indicates if the policy should automatically applied to resources that already exist in the account.
Defaults to `false`.
resource_type_list:
A list of resource types to protect. Conflicts with `resource_type`.
resource_type:
A resource type to protect. Conflicts with `resource_type_list`.
resource_tags:
A map of resource tags, that if present will filter protections on resources based on the `exclude_resource_tags`.
exclude_account_ids:
A list of AWS Organization member Accounts that you want to exclude from this AWS FMS Policy.
include_account_ids:
A list of AWS Organization member Accounts that you want to include for this AWS FMS Policy.
policy_data:
default_action:
The action that you want AWS WAF to take.
Possible values: `ALLOW`, `BLOCK` or `COUNT`.
override_customer_web_acl_association:
Wheter to override customer Web ACL association
logging_configuration:
The WAFv2 Web ACL logging configuration.
pre_process_rule_groups:
A list of pre-proccess rule groups.
post_process_rule_groups:
A list of post-proccess rule groups.
DOC
}
variable "shield_advanced_regional_policies" {
type = list(object({
name : string,
delete_all_policy_resources : bool,
exclude_resource_tags : bool,
remediation_enabled : bool,
resource_type_list : list(string),
resource_tags : map(string),
exclude_account_ids : list(string),
include_account_ids : list(string),
}))
default = []
description = <<-DOC
List of Shield Advanced Policies
name:
The friendly name of the AWS Firewall Manager Policy.
delete_all_policy_resources:
Whether to perform a clean-up process.
Defaults to `true`.
exclude_resource_tags:
A boolean value, if `true` the tags that are specified in the `resource_tags` are not protected by this policy.
If set to `false` and `resource_tags` are populated, resources that contain tags will be protected by this policy.
Defaults to `false`.
remediation_enabled:
A boolean value, indicates if the policy should automatically applied to resources that already exist in the account.
Defaults to `false`.
resource_type_list:
A list of resource types to protect. Conflicts with `resource_type`.
resource_type:
A resource type to protect. Conflicts with `resource_type_list`.
resource_tags:
A map of resource tags, that if present will filter protections on resources based on the `exclude_resource_tags`.
exclude_account_ids:
A list of AWS Organization member Accounts that you want to exclude from this AWS FMS Policy.
include_account_ids:
A list of AWS Organization member Accounts that you want to include for this AWS FMS Policy.
DOC
}
variable "waf_regional_policies" {
type = list(object({
name : string,
delete_all_policy_resources : bool,
exclude_resource_tags : bool,
remediation_enabled : bool,
resource_type_list : list(string),
resource_tags : map(string),
exclude_account_ids : list(string),
include_account_ids : list(string),
policy_data : object({
default_action : string
rule_groups : list(string)
}),
}))
default = []
description = <<-DOC
List of WAF Policies
name:
The friendly name of the AWS Firewall Manager Policy.
delete_all_policy_resources:
Whether to perform a clean-up process.
Defaults to `true`.
exclude_resource_tags:
A boolean value, if `true` the tags that are specified in the `resource_tags` are not protected by this policy.
If set to `false` and `resource_tags` are populated, resources that contain tags will be protected by this policy.
Defaults to `false`.
remediation_enabled:
A boolean value, indicates if the policy should automatically applied to resources that already exist in the account.
Defaults to `false`.
resource_type_list:
A list of resource types to protect. Conflicts with `resource_type`.
resource_type:
A resource type to protect. Conflicts with `resource_type_list`.
resource_tags:
A map of resource tags, that if present will filter protections on resources based on the `exclude_resource_tags`.
exclude_account_ids:
A list of AWS Organization member Accounts that you want to exclude from this AWS FMS Policy.
include_account_ids:
A list of AWS Organization member Accounts that you want to include for this AWS FMS Policy.
policy_data:
default_action:
The action that you want AWS WAF to take.
Possible values: `ALLOW`, `BLOCK` or `COUNT`.
rule_groups:
A list of rule groups.
DOC
}
variable "waf_v2_regional_policies" {
type = list(object({
name : string,
delete_all_policy_resources : bool,
exclude_resource_tags : bool,
remediation_enabled : bool,
resource_type_list : list(string),
resource_tags : map(string),
exclude_account_ids : list(string),
include_account_ids : list(string),
policy_data : object({
default_action : string,
override_customer_web_acl_association : bool,
logging_configuration : object({
logDestinationConfigs : list(string),
redactedFields : list(object({
redactedFieldType : string,
redactedFieldValue : string,
})),
}),
pre_process_rule_groups : list(object({
managedRuleGroupIdentifier : object({
vendorName : string,
managedRuleGroupName : string
version : string
versionEnabled : bool
}),
ruleGroupType : string,
ruleGroupArn : string,
overrideAction : map(string),
})),
post_process_rule_groups : list(object({
managedRuleGroupIdentifier : object({
vendorName : string,
managedRuleGroupName : string
version : string
versionEnabled : bool
}),
ruleGroupType : string,
ruleGroupArn : string,
overrideAction : map(string),
}))
}),
}))
default = []
description = <<-DOC
List of WAF v2 Policies
name:
The friendly name of the AWS Firewall Manager Policy.
delete_all_policy_resources:
Whether to perform a clean-up process.
Defaults to `true`.
exclude_resource_tags:
A boolean value, if `true` the tags that are specified in the `resource_tags` are not protected by this policy.
If set to `false` and `resource_tags` are populated, resources that contain tags will be protected by this policy.
Defaults to `false`.
remediation_enabled:
A boolean value, indicates if the policy should automatically applied to resources that already exist in the account.
Defaults to `false`.
resource_type_list:
A list of resource types to protect. Conflicts with `resource_type`.
resource_type:
A resource type to protect. Conflicts with `resource_type_list`.
resource_tags:
A map of resource tags, that if present will filter protections on resources based on the `exclude_resource_tags`.
exclude_account_ids:
A list of AWS Organization member Accounts that you want to exclude from this AWS FMS Policy.
include_account_ids:
A list of AWS Organization member Accounts that you want to include for this AWS FMS Policy.
policy_data:
default_action:
The action that you want AWS WAF to take.
Possible values: `ALLOW`, `BLOCK` or `COUNT`.
override_customer_web_acl_association:
Wheter to override customer Web ACL association
logging_configuration:
The WAFv2 Web ACL logging configuration.
pre_process_rule_groups:
A list of pre-proccess rule groups.
post_process_rule_groups:
A list of post-proccess rule groups.
DOC
}
variable "dns_firewall_policies" {
type = list(object({
name : string,
delete_all_policy_resources : bool,
exclude_resource_tags : bool,
remediation_enabled : bool,
resource_type_list : list(string),
resource_type : string,
resource_tags : map(string),
exclude_account_ids : list(string),
include_account_ids : list(string),
policy_data : object({
pre_process_rule_groups : list(string)
post_process_rule_groups : list(string)
}),
}))
default = []
description = <<-DOC
List of DNS Firewall Policies
name:
The friendly name of the AWS Firewall Manager Policy.
delete_all_policy_resources:
Whether to perform a clean-up process.
Defaults to `true`.
exclude_resource_tags:
A boolean value, if `true` the tags that are specified in the `resource_tags` are not protected by this policy.
If set to `false` and `resource_tags` are populated, resources that contain tags will be protected by this policy.
Defaults to `false`.
remediation_enabled:
A boolean value, indicates if the policy should automatically applied to resources that already exist in the account.
Defaults to `false`.
resource_type_list:
A list of resource types to protect. Conflicts with `resource_type`.
resource_type:
A resource type to protect. Conflicts with `resource_type_list`.
resource_tags:
A map of resource tags, that if present will filter protections on resources based on the `exclude_resource_tags`.
exclude_account_ids:
A list of AWS Organization member Accounts that you want to exclude from this AWS FMS Policy.
include_account_ids:
A list of AWS Organization member Accounts that you want to include for this AWS FMS Policy.
policy_data:
pre_process_rule_groups:
A list of maps of pre-proccess rule groups in the format `{ "ruleGroupId": "rslvr-frg-1", "priority": 10 }`.
post_process_rule_groups:
A list of maps post-proccess rule groups in the format `{ "ruleGroupId": "rslvr-frg-1", "priority": 10 }`.
DOC
}
variable "network_firewall_policies" {
type = list(object({
name : string,
delete_all_policy_resources : bool,
exclude_resource_tags : bool,
remediation_enabled : bool,
resource_type_list : list(string),
resource_type : string,
resource_tags : map(string),
exclude_account_ids : list(string),
include_account_ids : list(string),
policy_data : object({
stateless_rule_group_references : list(map(string))
stateless_default_actions : list(string)
stateless_fragment_default_actions : list(string)
stateless_custom_actions : list(map(string))
stateful_rule_group_references_arns : list(string)
single_firewall_endpoint_per_vpc : bool
allowed_ipv4_cidrs : list(string)
})
}))
default = []
description = <<-DOC
List of Network Firewall Policies
name:
The friendly name of the AWS Firewall Manager Policy.
delete_all_policy_resources:
Whether to perform a clean-up process.
Defaults to `true`.
exclude_resource_tags:
A boolean value, if `true` the tags that are specified in the `resource_tags` are not protected by this policy.
If set to `false` and `resource_tags` are populated, resources that contain tags will be protected by this policy.
Defaults to `false`.
remediation_enabled:
A boolean value, indicates if the policy should automatically applied to resources that already exist in the account.
Defaults to `false`.
resource_type_list:
A list of resource types to protect. Conflicts with `resource_type`.
resource_type:
A resource type to protect. Conflicts with `resource_type_list`.
resource_tags:
A map of resource tags, that if present will filter protections on resources based on the `exclude_resource_tags`.
exclude_account_ids:
A list of AWS Organization member Accounts that you want to exclude from this AWS FMS Policy.
include_account_ids:
A list of AWS Organization member Accounts that you want to include for this AWS FMS Policy.
policy_data:
stateless_rule_group_references:
A list of maps of configuration blocks containing references to the stateful rule groups that are used in the policy.
Format: `{ "resourceARN": "arn:aws:network-firewall:us-west-1:1234567891011:stateless-rulegroup/rulegroup2", "priority": 10 }`
stateless_default_actions:
A list of actions to take on a packet if it does not match any of the stateless rules in the policy.
You must specify one of the standard actions including: `aws:drop`, `aws:pass`, or `aws:forward_to_sfe`.
In addition, you can specify custom actions that are compatible with your standard action choice.
If you want non-matching packets to be forwarded for stateful inspection, specify aws:forward_to_sfe.
stateless_fragment_default_actions:
A list of actions to take on a fragmented packet if it does not match any of the stateless rules in the policy.
You must specify one of the standard actions including: `aws:drop`, `aws:pass`, or `aws:forward_to_sfe`.
In addition, you can specify custom actions that are compatible with your standard action choice.
If you want non-matching packets to be forwarded for stateful inspection, specify aws:forward_to_sfe.
stateless_custom_actions:
A list of maps describing the custom action definitions that are available for use in the firewall policy's `stateless_default_actions`.
Format: `{ "actionName": "custom1", "actionDefinition": { "publishMetricAction": { "dimensions": [ { "value": "dimension1" } ] } } }`
stateful_rule_group_references_arns:
A list of ARNs of the stateful rule groups.
orchestration_config:
single_firewall_endpoint_per_vpc:
Whether to use single Firewall Endpoint per VPC.
Defaults to `false`.
allowed_ipv4_cidrs:
A list of allowed ipv4 cidrs.
DOC
}