Skip to content

Commit

Permalink
Merge pull request #1613 from llamallama/master
Browse files Browse the repository at this point in the history
Fixing the example two tier application. It no longer applies.
  • Loading branch information
Ninir authored Sep 7, 2017
2 parents a6b0d0b + bd5d38d commit 02934d9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion examples/two-tier/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ resource "aws_instance" "web" {
# The connection will use the local SSH agent for authentication.
}

instance_type = "m1.small"
instance_type = "t2.micro"

# Lookup the correct AMI based on the region
# we specified
Expand Down
8 changes: 4 additions & 4 deletions examples/two-tier/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ variable "aws_region" {
# Ubuntu Precise 12.04 LTS (x64)
variable "aws_amis" {
default = {
eu-west-1 = "ami-b1cf19c6"
us-east-1 = "ami-de7ab6b6"
us-west-1 = "ami-3f75767a"
us-west-2 = "ami-21f78e11"
eu-west-1 = "ami-674cbc1e"
us-east-1 = "ami-1d4e7a66"
us-west-1 = "ami-969ab1f6"
us-west-2 = "ami-8803e0f0"
}
}

0 comments on commit 02934d9

Please sign in to comment.