Merge pull request #4463 from bsingr/patch-1

Remove recommendation to use create_before_destroy-hook in autoscaling group
This commit is contained in:
Clint 2016-01-04 14:25:47 -06:00
commit 5551eaeddc
1 changed files with 0 additions and 4 deletions

View File

@ -77,10 +77,6 @@ resource "aws_launch_configuration" "as_conf" {
resource "aws_autoscaling_group" "bar" {
name = "terraform-asg-example"
launch_configuration = "${aws_launch_configuration.as_conf.name}"
lifecycle {
create_before_destroy = true
}
}
```