-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathvariables.tf
44 lines (36 loc) · 1.02 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
variable "name" {
description = "Defender Deployment name"
type = string
default = "prisma-cloud-defender"
}
variable "ecs_cluster_arn" {
description = "ARN of the ECS cluster"
type = string
}
variable "defender_image" {
description = "Prisma Cloud Defender Image"
type = string
}
variable "prisma_cloud_ws_address" {
description = "Websocket address for the Prisma Cloud CWP console (Ex: wss://us-east1.cloud.twistlock.com:443)"
type = string
}
variable "prisma_cloud_registry_token" {
description = "Prisma Cloud registry (registry.twistlock.com) access token"
type = string
sensitive = true
}
variable "defender_install_bundle" {
description = "Prisma Cloud Defender INSTALL_BUNDLE "
type = string
sensitive = true
}
variable "defender_memory" {
description = "Memory (in MiB) for the Defender task "
type = string
}
variable "tags" {
description = "A map of tags to assign to resources"
type = map(string)
default = {}
}