forked from cattle-ops/terraform-aws-gitlab-runner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
34 lines (28 loc) · 808 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
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 "public_ssh_key_filename" {
default = "generated/id_rsa.pub"
}
variable "private_ssh_key_filename" {
default = "generated/id_rsa"
}
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"
}