diff --git a/website/docs/r/app_group_assignment.html.markdown b/website/docs/r/app_group_assignment.html.markdown index ef4c4717..831b1f2a 100644 --- a/website/docs/r/app_group_assignment.html.markdown +++ b/website/docs/r/app_group_assignment.html.markdown @@ -12,6 +12,14 @@ Assigns a group to an application. This resource allows you to create an App Group assignment. +__When using this resource, make sure to add the following `lifefycle` argument to the application resource you are assigning to:__ + +```hcl +lifecycle { + ignore_changes = ["groups"] +} +``` + ## Example Usage ```hcl diff --git a/website/docs/r/app_user.html.markdown b/website/docs/r/app_user.html.markdown index dd57f9a8..35885c36 100644 --- a/website/docs/r/app_user.html.markdown +++ b/website/docs/r/app_user.html.markdown @@ -12,6 +12,14 @@ Creates an Application User. This resource allows you to create and configure an Application User. +__When using this resource, make sure to add the following `lifefycle` argument to the application resource you are assigning to:__ + +```hcl +lifecycle { + ignore_changes = ["users"] +} +``` + ## Example Usage ```hcl