forked from ghrcdaac/dmrpp-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
51 lines (42 loc) · 1014 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
39
40
41
42
43
44
45
46
47
48
49
50
51
variable "aws_profile" {
type = string
default = null
}
variable "region" {
type = string
default = "us-west-2"
}
variable "prefix" {
type = string
description = "Cumulus stack prefix"
}
variable "desired_count" {
default = 1
}
variable "cpu" {
default = 800
}
variable "memory_reservation" {
default = 900
}
variable "cluster_arn" {}
variable "log_destination_arn" {
type = string
default = null
description = "A shared AWS:Log:Destination that receives logs in log_groups"
}
variable "docker_image" {
description = "Docker image used to generate DMRPP"
type = string
default = "ghrcdaac/dmrpp-generator:VERSION_SUB"
}
variable "volumes" {
description = "Volumes to make accessible to the container(s)"
type = list(object({ name = string, host_path = string, container_path = string }))
default = []
}
variable "enable_cw_logging" {
description = "Enable logging to cloud watch"
type = bool
default = true
}