Skip to content

Commit

Permalink
update incorrect doc for jaas group access resource
Browse files Browse the repository at this point in the history
- fix the docs for the juju_jaas_access_group resource
  • Loading branch information
kian99 committed Oct 11, 2024
1 parent a5c04d1 commit 58bf900
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/resources/jaas_access_group.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ A resource that represents access to a group when using JAAS.

```terraform
resource "juju_jaas_access_group" "development" {
group_uuid = juju_jaas_group.target-group.uuid
group_id = juju_jaas_group.target-group.uuid
access = "member"
users = ["[email protected]"]
groups = [juju_jaas_group.development.uuid]
Expand Down
2 changes: 1 addition & 1 deletion examples/resources/juju_jaas_access_group/resource.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
resource "juju_jaas_access_group" "development" {
group_uuid = juju_jaas_group.target-group.uuid
group_id = juju_jaas_group.target-group.uuid
access = "member"
users = ["[email protected]"]
groups = [juju_jaas_group.development.uuid]
Expand Down

0 comments on commit 58bf900

Please sign in to comment.