From 42897fe3b23baa15c637513dce67c7d584722836 Mon Sep 17 00:00:00 2001 From: Patrick de Ruiter Date: Tue, 12 May 2020 00:12:15 +0200 Subject: [PATCH] Removed terraform.tfvars and removed values from variables.tf because these are set from terraform cloud workspace --- terraform.tfvars | 0 variables.tf | 4 ---- 2 files changed, 4 deletions(-) delete mode 100644 terraform.tfvars diff --git a/terraform.tfvars b/terraform.tfvars deleted file mode 100644 index e69de29..0000000 diff --git a/variables.tf b/variables.tf index 29a03f1..99259ef 100644 --- a/variables.tf +++ b/variables.tf @@ -1,22 +1,18 @@ variable "organization" { description = "Organization Name" type = string - default = "wbyc" } variable "environment" { description = "Environment Name" type = string - default = "prod" } variable "region" { description = "Default Region to set" type = string - default = "eu-west-1" } variable "availability-zone-names" { description = "List of Availability zone names" type = list(string) - default = [ "eu-west-1a" ] }