Skip to content

Commit

Permalink
Add actions to kubernetes-application resource type (#444)
Browse files Browse the repository at this point in the history
  • Loading branch information
rtitle committed Jul 30, 2020
1 parent aaa97da commit 853d388
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions src/main/resources/reference.conf
Original file line number Diff line number Diff line change
Expand Up @@ -364,14 +364,20 @@ resourceTypes = {
update = {
description = "update kubernetes application"
}
status = {
description = "view details and configuration of the kubernetes application"
}
read_policies = {
description = "view all policies and policy details for the kubernetes application"
}
}
ownerRoleName = "creator"
roles = {
creator = {
roleActions = ["delete", "connect", "update"]
roleActions = ["delete", "connect", "update", "status", "read_policies"]
}
manager = {
roleActions = ["delete"]
roleActions = ["delete", "status", "read_policies"]
}
}
reuseIds = false
Expand Down

0 comments on commit 853d388

Please sign in to comment.