Skip to content
Snippets Groups Projects
Commit c4572ad7 authored by Nathan Rodet's avatar Nathan Rodet
Browse files

removed local files

parent cfa5ea50
No related branches found
No related tags found
6 merge requests!6End of development,!5Develop,!4End of development,!3Develop,!2hot-fix: change readme.md,!1Develop
Pipeline #49021 failed
terraform/.terraform.lock.hcl terraform/.terraform.lock.hcl
terraform/.terraform.tfstate.lock.info terraform/.terraform.tfstate.lock.info
terraform/terraform.tfstate* terraform/terraform.tfstate*
terraform/variables-local.tfvars
terraform/vvariables-local.tf
terraform/.terraform/* terraform/.terraform/*
terraform/tfplan terraform/tfplan
.idea .idea
terraform/variables-local.tfvars
### 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..."
}
## Terraform local execution
variable "FORGE_PROJECT_ID" {
type = string
description = "Forge Project ID"
sensitive = true
}
variable "FORGE_USERNAME" {
type = string
description = "Forge Username"
sensitive = true
}
variable "FORGE_ACCESS_TOKEN" {
type = string
description = "Forge Access Token"
sensitive = true
}
### SCW variables
SCW_PROJECT_ID = ""
SCW_ACCESS_KEY = ""
SCW_SECRET_KEY = ""
SCW_SSH_PUB_KEY = ""
SCW_SSH_PRIVATE_KEY = ""
INSTANCES_COUNT = ""
ENVIRONMENT = ""
### FORGE variables
FORGE_PROJECT_ID = ""
FORGE_USERNAME="[\"\"]"
FORGE_ACCESS_TOKEN = ""
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment