Skip to content

Commit

Permalink
test commit 006
Browse files Browse the repository at this point in the history
  • Loading branch information
mermoldy committed Aug 27, 2019
1 parent cf6be23 commit 143d660
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions aws/virtual-machine/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -32,3 +32,18 @@ resource "aws_instance" "terraform-test-instance" {
ignore_changes = ["tags"]
}
}


resource "aws_instance" "terraform-test-instance2" {
ami = "${data.aws_ami.ubuntu.id}"
instance_type = "${var.instance_type}"

tags = {
Name = "test-instance"
timestamp = "${timestamp()}"
}

lifecycle {
ignore_changes = ["tags"]
}
}

0 comments on commit 143d660

Please sign in to comment.