Skip to content

Commit

Permalink
fix: permit explicitly empty group membership
Browse files Browse the repository at this point in the history
  • Loading branch information
isometry committed Jan 18, 2023
1 parent 7e28235 commit a4bb3c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ad/resource_ad_group_membership.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ func resourceADGroupMembership() *schema.Resource {
Required: true,
Description: "A list of member AD Principals. Each principal can be identified by its GUID, SID, Distinguished Name, or SAM Account Name. Only one is required",
Elem: &schema.Schema{Type: schema.TypeString},
MinItems: 1,
MinItems: 0,
},
},
}
Expand Down

0 comments on commit a4bb3c5

Please sign in to comment.