From 279a94ae3ca991c96479b8fe30adf9386d8fcef4 Mon Sep 17 00:00:00 2001 From: Chris Long Date: Mon, 22 Jul 2019 21:20:45 -0700 Subject: [PATCH] Remove default AMI IDs --- Terraform/variables.tf | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/Terraform/variables.tf b/Terraform/variables.tf index 2ddb0c9..32ef960 100644 --- a/Terraform/variables.tf +++ b/Terraform/variables.tf @@ -90,25 +90,23 @@ data "aws_ami" "win10_ami" { # If you are building your own AMIs, replace the default values below with # the AMI IDs -# The default values for us-west-1 have been provied for you -# You will have to change the default values if you use a different region variable "logger_ami" { type = string - default = "ami-0ad16744583f21877" + default = "" } variable "dc_ami" { type = string - default = "ami-03e2df055c632a0dd" + default = "" } variable "wef_ami" { type = string - default = "ami-03c82482c03a740c5" + default = "" } variable "win10_ami" { type = string - default = "ami-0a4644e74768900f7" + default = "" }