-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathvariables.tf
40 lines (33 loc) · 1018 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
variable "worker_pool_config" {
description = "Configuration for the worker pool"
type = string
}
variable "worker_pool_private_key" {
description = "Private key for the worker pool"
type = string
}
variable "worker_pool_id" {
description = "ID of the worker pool"
type = string
}
variable "spacelift_api_key_id" {
type = string
description = "ID of the Spacelift API key to use"
}
variable "spacelift_api_key_secret" {
type = string
sensitive = true
description = "Secret corresponding to the Spacelift API key to use"
}
variable "spacelift_api_key_endpoint" {
type = string
description = "Full URL of the Spacelift API endpoint to use, eg. https://demo.app.spacelift.io"
}
variable "worker_pool_security_groups" {
description = "The security groups to be used for the worker pool"
type = list(string)
}
variable "worker_pool_subnets" {
description = "The subnets to be used for the worker pool"
type = list(string)
}