-
Notifications
You must be signed in to change notification settings - Fork 4
/
variables.tf
38 lines (33 loc) · 1006 Bytes
/
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
variable "deployment_accountid" {
type = string
description = "The AWS Account Id to deploy Prowler"
}
variable "ecr_image_uri" {
type = string
description = "URI Path of the Prowler Docker Image - Preferably from ECR"
}
variable "region_primary" {
type = string
description = "AWS Region to deploy to"
}
variable "prowler_schedule_task_expression" {
type = string
default = "rate(7 days)"
description = "Schedule Expression to run the Prowler AWS Fargate Task"
}
variable "prowler_container_sg_id" {
type = string
description = "Provide a Security Group ID to launch Prowler container"
}
variable "prowler_container_vpc_subnet_id" {
type = string
description = "Provide a Subnet ID to launch Prowler container"
}
variable "tags" {
description = "A map of tags (key-value pairs) passed to resources."
type = map(string)
default = {
Application = "prowler-security-assessment"
Deployment = "Terraform"
}
}