Changing t1.micro to t2.micro and m4.large

This commit is contained in:
dnABic 2016-10-15 01:02:44 +02:00
parent c1d6e36616
commit 4daf9eeef4
1 changed files with 3 additions and 3 deletions

View File

@ -29,7 +29,7 @@ data "aws_ami" "ubuntu" {
resource "aws_launch_configuration" "as_conf" {
name = "web_config"
image_id = "${data.aws_ami.ubuntu.id}"
instance_type = "t1.micro"
instance_type = "t2.micro"
}
```
@ -60,7 +60,7 @@ data "aws_ami" "ubuntu" {
resource "aws_launch_configuration" "as_conf" {
name_prefix = "terraform-lc-example-"
image_id = "${data.aws_ami.ubuntu.id}"
instance_type = "t1.micro"
instance_type = "t2.micro"
lifecycle {
create_before_destroy = true
@ -106,7 +106,7 @@ data "aws_ami" "ubuntu" {
resource "aws_launch_configuration" "as_conf" {
image_id = "${data.aws_ami.ubuntu.id}"
instance_type = "t1.micro"
instance_type = "m4.large"
spot_price = "0.001"
lifecycle {
create_before_destroy = true