From 365de1c83e9b130d9e16e91c9f5741bbde96dc31 Mon Sep 17 00:00:00 2001 From: Nathan Rodet <nrodet@grandlyon.com> Date: Tue, 20 Dec 2022 16:53:56 +0100 Subject: [PATCH] "Removed file" --- .gitignore | 3 +-- terraform/variables-local.tf | 19 ------------------- terraform/variables-local.tfvars | 14 -------------- 3 files changed, 1 insertion(+), 35 deletions(-) delete mode 100644 terraform/variables-local.tf delete mode 100644 terraform/variables-local.tfvars diff --git a/.gitignore b/.gitignore index 206ea19..1052d68 100644 --- a/.gitignore +++ b/.gitignore @@ -3,7 +3,6 @@ terraform/.terraform.tfstate.lock.info terraform/terraform.tfstate* terraform/.terraform/* terraform/tfplan -.env .idea -terraform/variables-local.tfvars terraform/variables-local.tf +terraform/variables-local.tfvars diff --git a/terraform/variables-local.tf b/terraform/variables-local.tf deleted file mode 100644 index f322a9e..0000000 --- a/terraform/variables-local.tf +++ /dev/null @@ -1,19 +0,0 @@ -## 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 -} diff --git a/terraform/variables-local.tfvars b/terraform/variables-local.tfvars deleted file mode 100644 index 00e9406..0000000 --- a/terraform/variables-local.tfvars +++ /dev/null @@ -1,14 +0,0 @@ -### SCW variables - -SCW_PROJECT_ID = "" -SCW_ACCESS_KEY = "" -SCW_SECRET_KEY = "-" -SCW_SSH_PUB_KEY = "" -SCW_SSH_PRIVATE_KEY = "" -INSTANCES_COUNT = "2" -ENVIRONMENT = "devrust" - -### FORGE variables -FORGE_PROJECT_ID = "" -FORGE_USERNAME="" -FORGE_ACCESS_TOKEN = "" \ No newline at end of file -- GitLab