Skip to content

Instantly share code, notes, and snippets.

@dustinmm80
Last active August 29, 2015 14:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dustinmm80/12829d163fa731ed0bac to your computer and use it in GitHub Desktop.
Save dustinmm80/12829d163fa731ed0bac to your computer and use it in GitHub Desktop.
Policy file for Conjur's demo-factory
policy "demo-factory-1-0" do
variables = [
variable("aws/access_key_id"),
variable("aws/secret_access_key"),
variable("sentry/projects/demo-factory/dsn"),
variable("hipchat/api-token"),
variable("trials/hubspot/api-key"),
variable("mandrill/api-key"),
variable("keen.io/demo-factory/project-id"),
variable("keen.io/demo-factory/write-key")
]
layer "service" do
variables.each do |v|
can "execute", v
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment