summaryrefslogtreecommitdiff
path: root/lib/chef_zero/chef_data/default_creator.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/chef_zero/chef_data/default_creator.rb')
-rw-r--r--lib/chef_zero/chef_data/default_creator.rb7
1 files changed, 3 insertions, 4 deletions
diff --git a/lib/chef_zero/chef_data/default_creator.rb b/lib/chef_zero/chef_data/default_creator.rb
index 38be6f3..0ad94d1 100644
--- a/lib/chef_zero/chef_data/default_creator.rb
+++ b/lib/chef_zero/chef_data/default_creator.rb
@@ -282,8 +282,7 @@ module ChefZero
'delete' => { 'groups' => %w(admins) },
'grant' => { 'groups' => %w(admins) },
}
- when 'containers/cookbook_artifacts', 'containers/cookbooks',
- 'containers/environments', 'containers/policies', 'containers/policy_groups', 'containers/roles'
+ when 'containers/environments', 'containers/policies', 'containers/policy_groups', 'containers/roles'
{
'create' => { 'groups' => %w(admins users) },
'read' => { 'groups' => %w(admins users clients) },
@@ -291,7 +290,7 @@ module ChefZero
'delete' => { 'groups' => %w(admins users) },
'grant' => { 'groups' => %w(admins) },
}
- when 'containers/data'
+ when 'containers/cookbooks', 'containers/cookbook_artifacts', 'containers/data'
{
'create' => { 'groups' => %w(admins users clients) },
'read' => { 'groups' => %w(admins users clients) },
@@ -441,7 +440,7 @@ module ChefZero
when 4
return path[0] == 'organizations' && (
(path[2] == 'acls' && path[1] != 'root') ||
- %w(cookbooks data).include?(path[2]))
+ %w(cookbooks cookbook_artifacts data policies policy_groups).include?(path[2]))
else
return false
end