From ff8d02cd259414f9b2778f923c3e1f3cbf5edb01 Mon Sep 17 00:00:00 2001 From: James Bardin Date: Tue, 3 Apr 2018 17:37:36 -0400 Subject: [PATCH] remove old warning care create_before_destroy Create-before-destroy dependencies are automatically ordered correctly by terraform. Remove the old notice about requiring all dependencies to have the same setting for create_before_destroy. --- website/docs/configuration/resources.html.md | 5 ----- 1 file changed, 5 deletions(-) diff --git a/website/docs/configuration/resources.html.md b/website/docs/configuration/resources.html.md index 748237167..26771c163 100644 --- a/website/docs/configuration/resources.html.md +++ b/website/docs/configuration/resources.html.md @@ -71,11 +71,6 @@ There are **meta-parameters** available to all resources: example, this can be used to create an new DNS record before removing an old record. - ~> Resources that utilize the `create_before_destroy` key can only - depend on other resources that also include `create_before_destroy`. - Referencing a resource that does not include `create_before_destroy` - will result in a dependency graph cycle. - - `prevent_destroy` (bool) - This flag provides extra protection against the destruction of a given resource. When this is set to `true`, any plan that includes a destroy of this resource will return an error message.