Skip to content

Commit

Permalink
Merge pull request #607 from kian99/fix-resource-docs-for-group-access
Browse files Browse the repository at this point in the history
#607

## Description

Thanks to the call for testing I used the v0.15.0-rc1 candidate for the Terraform provider without any issues except for a small mistake I noticed in the docs.
- Fix the docs for the juju_jaas_access_group resource, the field called `group_uuid` should have been `group_id`.

Fixes: 

## Type of change

- Documentation update
  • Loading branch information
jujubot authored Oct 15, 2024
2 parents a5c04d1 + 40bcd2d commit 6e93012
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 6e93012

Please sign in to comment.