-
Notifications
You must be signed in to change notification settings - Fork 2
/
variables.tf
41 lines (35 loc) · 1.1 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
###################################
# AWS variables
###################################
variable "aws_eventbridge_event_bus_name" {
type = string
default = "Lacework_Alerts_Event_Bus"
description = "The name of the AWS EventBridge to be created"
}
variable "aws_eventbridge_event_rule_name" {
type = string
default = "Lacework_Alerts_Event_Rule"
description = "The name of the AWS EventBridge rule to be created"
}
variable "aws_sqs_queue_name" {
type = string
default = "Lacework_Alerts_SQS_Queue_Name"
description = "The name of the SQS queue to be created"
}
variable "aws_s3_bucket_name" {
type = string
description = "The name of the S3 bucket to be created"
}
###################################
# Lacework variables
###################################
variable "lacework_profile" {
type = string
default = "default"
description = "The Lacework CLI profile to be used to authenticate with Lacework"
}
variable "lacework_eventbridge_alert_channel_name" {
type = string
default = "Alerts to AWS S3 via EventBridge"
description = "The name of the Lacework alert channel to be created"
}