-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
81 lines (68 loc) · 1.96 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
variable "availability_zones" {
description = "Availability zones to provision in the VPC"
type = list(string)
default = ["us-east-2a", "us-east-2b", "us-east-2c"]
}
variable "cidr_block" {
description = "CIDR block for the entire VPC"
type = string
default = "10.1.0.0/16"
}
variable "console_users" {
description = "GitHub IDs of users who need access to the Nurax console"
type = list(string)
default = []
}
variable "db_instance_class" {
description = "Instance class for the RDS database"
type = string
default = "db.t4g.micro"
}
variable "fcrepo_cpu" {
description = "CPU shares reserved for Fedora"
type = number
default = 1024
}
variable "honeybadger_api_key" {
type = string
default = ""
}
variable "hosted_zone_name" {
description = "Domain name the stack domain will be created under"
type = string
}
variable "namespace" {
description = "Prefix for resource in the stack"
type = string
default = "nurax"
}
variable "postgres_version" {
description = "PostgreSQL version to use"
type = string
default = "14.13"
}
variable "private_subnets" {
description = "CIDR blocks for the private subnet in each availability zone"
type = list(string)
default = ["10.1.1.0/24", "10.1.3.0/24", "10.1.5.0/24"]
}
variable "public_subnets" {
description = "CIDR blocks for the public subnet in each availability zone"
type = list(string)
default = ["10.1.2.0/24", "10.1.4.0/24", "10.1.6.0/24"]
}
variable "samvera_stack_memory" {
description = "Total memory allocated for Fedora and solr"
type = number
default = 4096
}
variable "solr_cpu" {
description = "CPU shares reserved for solr"
type = number
default = 1024
}
variable "tags" {
description = "Tags to add to all resources"
type = map
default = {}
}