Hi,
I have a internal group - “test1”
Name - “test1”
Type - “internal”
ID - 484a112d-fd3b-de52-cf7d-ec6098d56bce
I am trying to create a group admin policy for specific user ( allow him to manage this particular group )
I tried following policy
path “identity/group/id/*” {
capabilities = [“create”, “read”, “update”, “delete”, “list”]
}} —> Give access to all groups
2 option
path “identity/group/id/484a112d-fd3b-de52-cf7d-ec6098d56bce” {
capabilities = [“create”, “read”, “update”, “delete”, “list”]
}}-----> Does not work
3 options
path “identity/group/id/*” {
capabilities = [“create”, “read”, “update”, “delete”, “list”]
allowed_parameters = {
“name” = [“test”]
}
}----> Give access to all groups
How to achieve group admin policy ?