2014-09-22 22:31:20 +02:00
|
|
|
|
|
|
|
resource "aws_instance" "web" {
|
|
|
|
ami = "foo"
|
2014-09-23 00:02:00 +02:00
|
|
|
lifecycle {
|
|
|
|
create_before_destroy = true
|
|
|
|
}
|
2014-09-22 22:31:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
resource "aws_instance" "bar" {
|
|
|
|
ami = "foo"
|
2014-09-23 00:02:00 +02:00
|
|
|
lifecycle {
|
|
|
|
create_before_destroy = false
|
|
|
|
}
|
2014-09-22 22:31:20 +02:00
|
|
|
}
|