1
0
Fork 0
mirror of https://github.com/fog/fog-aws.git synced 2022-11-09 13:50:52 -05:00
fog--fog-aws/lib/fog/aws/iam/default_policies.rb
2015-05-29 15:25:11 -07:00

15 lines
378 B
Ruby

module Fog
module AWS
class IAM
class Mock
def self.default_policies
Fog::JSON.decode(File.read(File.expand_path("../default_policies.json", __FILE__)))
end
def self.default_policy_versions
Fog::JSON.decode(File.read(File.expand_path("../default_policy_versions.json", __FILE__)))
end
end
end
end
end