generated from equinix-labs/terraform-equinix-template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
variables.tf
39 lines (33 loc) · 1.02 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
variable "runner_scope" {
type = string
description = "To specify repositories, use the format ':owner/:repo'. For example, 'equinix-labs/terraform-equinix-github-runner'. To specify an organization, use the format ':organization'"
}
variable "personal_access_token" {
type = string
description = "GitHub PAT (Personal Access Token)"
sensitive = true
}
variable "project_id" {
type = string
description = "Your Equinix Metal project ID, where you want to deploy your server"
}
variable "plan" {
type = string
description = "Metal server type you plan to deploy"
default = "c3.small.x86"
}
variable "operating_system" {
type = string
description = "OS you want to deploy"
default = "ubuntu_20_04"
}
variable "metro" {
type = string
description = "Metal's Metro location you want to deploy your servers to"
default = "ny"
}
variable "server_count" {
type = number
description = "numbers of servers you want to deploy"
default = 1
}