Skip to content
This repository has been archived by the owner on Jun 14, 2021. It is now read-only.

Document the need for lifecycle argument #327

Merged
merged 1 commit into from
Nov 12, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions website/docs/r/app_group_assignment.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 8 additions & 0 deletions website/docs/r/app_user.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down