Skip to content

Commit

Permalink
fix: do not force recreation of group
Browse files Browse the repository at this point in the history
Re-creating FA group on every role changes causes groups to lose every
user assigned to them. By not forcing the recreation of TF resource, one
can dynamically modify roles without risk of losing existing
assignments.
  • Loading branch information
janneliukkonen authored and MCBrandenburg committed Mar 25, 2022
1 parent 9fdc4dd commit fdc32df
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion fusionauth/resource_fusionauth_group.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ func newGroup() *schema.Resource {
Elem: &schema.Schema{Type: schema.TypeString},
Optional: true,
Description: "The Application Roles to assign to this group.",
ForceNew: true,
},
"tenant_id": {
Type: schema.TypeString,
Expand Down

0 comments on commit fdc32df

Please sign in to comment.