-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
45 lines (38 loc) · 951 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
variable "aws_account_id" {
description = "AWS Account (ID) to use"
type = string
}
variable "aws_region" {
description = "AWS region"
type = string
}
variable "github_org_id" {
description = "GitHub org id"
type = string
}
variable "humanitec_org_id" {
description = "Humanitec Organization ID"
type = string
}
variable "humanitec_ci_service_user_token" {
description = "Humanitec CI Service User Token"
type = string
sensitive = true
}
variable "resource_packs_aws_rev" {
description = "Revision of the resource-packs-aws repository to use"
type = string
default = "refs/heads/main"
}
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
}