update AMI ID; remove unnecessary output

This commit is contained in:
Rob Genova
2017-08-08 00:41:17 +00:00
parent 44b6f25380
commit ab87f9506a
3 changed files with 2 additions and 18 deletions

View File

@@ -49,7 +49,7 @@ Update terraform.tfvars with your SSH key name:
```bash
region = "us-east-1"
ami = "ami-577d212c"
ami = "ami-a780afdc"
instance_type = "t2.medium"
key_name = "KEY_NAME"
server_count = "3"

View File

@@ -43,22 +43,6 @@ module "hashistack" {
cluster_tag_value = "${var.cluster_tag_value}"
}
output "primary_server_private_ips" {
value = "${module.hashistack.primary_server_private_ips}"
}
output "primary_server_public_ips" {
value = "${module.hashistack.primary_server_public_ips}"
}
output "client_private_ips" {
value = "${module.hashistack.client_private_ips}"
}
output "client_public_ips" {
value = "${module.hashistack.client_public_ips}"
}
output "IP_Addresses" {
value = <<CONFIGURATION

View File

@@ -1,5 +1,5 @@
region = "us-east-1"
ami = "ami-577d212c"
ami = "ami-a780afdc"
instance_type = "t2.medium"
key_name = "KEY_NAME"
server_count = "1"