-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
41 lines (35 loc) · 843 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
variable "aws_account_id" {
description = "AWS Account (ID) to use"
type = string
}
variable "aws_region" {
description = "AWS region"
type = string
}
variable "instance_types" {
description = "List of EC2 instances types to use for EKS nodes"
type = list(string)
default = [
"t3.large"
]
}
variable "disk_size" {
description = "Disk size in GB to use for EKS nodes"
type = number
default = 20
}
variable "with_backstage" {
description = "Deploy Backstage"
type = bool
default = false
}
variable "github_org_id" {
description = "GitHub org id (required for Backstage)"
type = string
default = null
}
variable "humanitec_org_id" {
description = "Humanitec Organization ID (required for Backstage)"
type = string
default = null
}