forked from cattle-ops/terraform-aws-gitlab-runner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
32 lines (27 loc) · 794 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
variable "aws_region" {
description = "AWS region."
type = string
default = "eu-west-1"
}
variable "environment" {
description = "A name that identifies the environment, will used as prefix and for tagging."
default = "ci-runners"
type = string
}
variable "runner_name" {
description = "Name of the runner, will be used in the runner config.toml"
type = string
}
variable "gitlab_url" {
description = "URL of the gitlab instance to connect to."
type = string
}
variable "runner_token" {
description = "Token for the runner, will be used in the runner config.toml"
type = string
}
variable "timezone" {
description = "Timezone that will be set for the runner."
type = string
default = "Europe/Amsterdam"
}