-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvariables.tf
75 lines (61 loc) · 1.86 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
variable "create_amd64" {
description = "Whether to create amd64 builder instance"
default = true
}
variable "create_arm64" {
description = "Whether to create arm64 builder instance"
default = true
}
variable "instance_type_amd64" {
description = "The amd64 builder instance type"
default = "t3.medium"
}
variable "instance_type_arm64" {
description = "The arm64 builder instance type"
default = "t4g.medium"
}
variable "volume_root_size" {
description = "The multiarch builder instances root volume size"
default = 15
}
variable "az" {
description = "The multiarch builder instances availability zone"
default = null
}
variable "prefix_name" {
description = "The multiarch builder instances prefix name"
default = "multiarch-builder"
}
variable "security_group_ids" {
description = "The multiarch builder instances security group ids list"
type = list(string)
default = []
}
variable "subnet_id" {
description = "The multiarch builder instances (public) subnet id"
default = null
}
variable "key_name" {
description = "The multiarch builder instances ssh key name"
default = null
}
variable "iam_instance_profile" {
description = "The multiarch builder instances iam instance profile"
default = null
}
variable "tls_validity_period_hours" {
description = "Number of hours, after initial issuing, that the certificate will remain valid for"
default = 24
}
variable "docker_cert_path" {
description = "Location for storing generated client docker certificates"
default = "~/.docker/multiarch-builder/certs"
}
variable "create_client_certs" {
description = "Whether client certificate files are stored on the disk"
default = true
}
variable "handle_client_config" {
description = "Whether client buildx config is created or removed (when destroyed)"
default = true
}