forked from sous-chefs/aws
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmetadata.rb
36 lines (33 loc) · 1.27 KB
/
metadata.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
name 'aws'
maintainer 'Chef Software, Inc.'
maintainer_email 'cookbooks@chef.io'
license 'Apache-2.0'
description 'Provides resources for managing AWS resources'
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md'))
version '8.0.3'
%w(ubuntu debian centos redhat amazon scientific fedora oracle freebsd windows suse opensuse opensuseleap).each do |os|
supports os
end
source_url 'https://github.com/chef-cookbooks/aws'
issues_url 'https://github.com/chef-cookbooks/aws/issues'
chef_version '>= 12.9' if respond_to?(:chef_version)
# Pin the aws sdk to the minor version to only pull
# in new patches by default. For some of these
# gems AWS typically releases a new minor version
# daily so this should reduce the number of gem
# versions that someone has installed.
gem 'aws-sdk-cloudformation', '~> 1.13.0'
gem 'aws-sdk-cloudwatch', '~> 1.13.0'
gem 'aws-sdk-core', '~> 3.44.0'
gem 'aws-sdk-dynamodb', '~> 1.18.0'
gem 'aws-sdk-ec2', '~> 1.63.0'
gem 'aws-sdk-elasticloadbalancing', '~> 1.8.0'
gem 'aws-eventstream', '~> 1.0.1'
gem 'aws-sdk-iam', '~> 1.13.0'
gem 'aws-sdk-kinesis', '~> 1.9.0'
gem 'aws-sdk-kms', '~> 1.13.0'
gem 'aws-sdk-route53', '~> 1.16.0'
gem 'aws-partitions', '~> 1.123.0'
gem 'aws-sdk-s3', '~> 1.30.0'
gem 'aws-sigv4', '~> 1.0.3'
gem 'aws-sdk-ssm', '~> 1.34.0'