Skip to content
Snippets Groups Projects
variables-gitlab.tf 855 B
Newer Older
Nathan Rodet's avatar
Nathan Rodet committed
### 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"
}

Nathan Rodet's avatar
Nathan Rodet committed
variable "LETSENCRYPT_EMAIL" {
  type        = string
  sensitive   = true
  description = "User password for accessing services"
}

variable "USER_PASSWORD" {
  type        = string
Nathan Rodet's avatar
Nathan Rodet committed
  sensitive   = true
  description = "User password for accessing services"
}

Nathan Rodet's avatar
Nathan Rodet committed
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..."
}