Skip to content

Commit

Permalink
Update group_member.md
Browse files Browse the repository at this point in the history
Makes the code in "example usage" reflect the actual properties that are output by azuread_grouup and azuread_user;
  • Loading branch information
joshvito authored Oct 28, 2024
1 parent 51bd998 commit 9e89440
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/resources/group_member.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ resource "azuread_group" "example" {
}
resource "azuread_group_member" "example" {
group_object_id = azuread_group.example.id
member_object_id = data.azuread_user.example.id
group_object_id = azuread_group.example.object_id
member_object_id = data.azuread_user.example.object_id
}
```

Expand Down

0 comments on commit 9e89440

Please sign in to comment.