Skip to content

Commit

Permalink
test group member
Browse files Browse the repository at this point in the history
  • Loading branch information
maciaszczykm committed Jul 25, 2024
1 parent aed3d53 commit 5f28e0b
Showing 1 changed file with 13 additions and 8 deletions.
21 changes: 13 additions & 8 deletions example/user/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,16 @@ data "plural_group" "group" {
name = "team"
}

# resource "plural_group" "test" {
# name = "test"
# description = "test group"
# }
#
# resource "plural_group" "empty" {
# name = "empty"
# }
resource "plural_group" "test" {
name = "test"
description = "test group"
}

resource "plural_group" "empty" {
name = "empty"
}

resource "plural_group_member" "test" {
user_id = data.plural_user.user.id
group_id = plural_group.test.id
}

0 comments on commit 5f28e0b

Please sign in to comment.