-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
38 lines (32 loc) · 1.11 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
variable "vpc_id" {
type = string
description = "Configures which VPC the build nodes should be created in."
}
variable "name_prefix" {
type = string
description = "Prefix which should be used for all resources created by this module"
}
variable "source_blocks" {
type = list(string)
default = []
description = "IP blocks which should be allowed to connect to the build hosts via SSH"
}
variable "ssh_pubkey" {
type = string
description = "The SSH public key to use to connect to agent instances."
}
variable "allow_spot_instances" {
type = bool
default = true
description = "Controls whether the permissions for the control user include creation of spot requests (vs ondemand). Note that you must have already created a service linked role for spot.amazonaws.com to use this feature."
}
variable "instance_profile_policies" {
type = set(string)
default = []
description = "Specifies additional managed policies to attach to the instance profile for agent nodes."
}
variable "tags" {
type = map(string)
default = {}
description = "A map of tags to apply to all resources created by this module"
}