Newer
Older
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
41
### Gitlab CI variables
variable "SCW_PROJECT_ID" {
type = string
sensitive = true
description = "Project ID from a scaleway project"
}
variable "SCW_ACCESS_KEY" {
type = string
sensitive = true
description = "Scaleway access key"
}
variable "SCW_SECRET_KEY" {
type = string
sensitive = true
description = "Scaleway secret key"
}
variable "SCW_SSH_PUB_KEY" {
type = string
sensitive = true
description = "SSH public key from Gitlab agent installed on scaleway"
}
variable "SCW_SSH_PRIVATE_KEY" {
type = string
sensitive = true
description = "SSH private key from Gitlab agent for remote-exec"
}
variable "INSTANCES_COUNT" {
type = number
description = "Number of instances to create"
}
variable "ENVIRONMENT" {
type = string
description = "The type of lab to create, ex: devrust, pentest..."
}