Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

azuread_group - support for the owners property #62

Merged
merged 7 commits into from
Jul 24, 2019
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
git merge master -s
katbyte committed Jul 22, 2019

Verified

This commit was signed with the committer’s verified signature.
commit 4e071246b26b0f16e3cfba7e445c6425817a1314
7 changes: 3 additions & 4 deletions website/docs/r/group.markdown
Original file line number Diff line number Diff line change
@@ -26,16 +26,15 @@ resource "azuread_group" "example" {
*A group with members*

```hcl
resource "azuread_user" "my_user" {
resource "azuread_user" "example" {
display_name = "J Doe"
password = "notSecure123"
user_principal_name = "j.doe@terraform.onmicrosoft.com"
}

resource "azuread_group" "my_group" {
resource "azuread_group" "example" {
name = "MyGroup"
members = [ azuread_user.my_user.object_id /*, more users */ ]
owners = [ azuread_user.my_user.object_id /*, more users */ ]
members = [ "${azuread_user.example.object_id}" /*, more users */ ]
}
```

2 changes: 1 addition & 1 deletion website/docs/r/group_member.markdown
Original file line number Diff line number Diff line change
@@ -17,7 +17,7 @@ Manages a single Group Membership within Azure Active Directory.

```hcl

data "azuread_user" "my_user" {
data "azuread_user" "example" {
user_principal_name = "jdoe@hashicorp.com"
}

You are viewing a condensed version of this merge commit. You can view the full changes here.