cf_factory 0.0.4 → 0.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/bin/cf_factory +9 -9
- data/examples/base_vpc.rb +40 -40
- data/examples/cloudfront_private.rb +23 -23
- data/examples/cloudinit_script_for_one_instance.rb +77 -77
- data/examples/cloudinit_script_with_autoscaling.rb +85 -85
- data/examples/dynamodb_table.rb +24 -24
- data/examples/elastic_beanstalk_example.rb +23 -23
- data/examples/elb_with_cloudfront.rb +100 -100
- data/examples/instance_with_eip.rb +40 -40
- data/examples/instance_with_yum.rb +40 -40
- data/examples/just_an_instance.rb +31 -31
- data/examples/nat_mutual_monitoring.rb +69 -69
- data/examples/play_with_region_and_zones.rb +28 -28
- data/examples/ra_web_hosting.rb +148 -148
- data/examples/s3_with_cloudfront.rb +35 -35
- data/examples/test_vpc.rb +61 -61
- data/lib/cf_factory/as/cf_as_group.rb +80 -77
- data/lib/cf_factory/as/cf_as_launch_config.rb +55 -55
- data/lib/cf_factory/as/cf_as_scaling_policy.rb +35 -35
- data/lib/cf_factory/as/cf_as_update_policy.rb +23 -0
- data/lib/cf_factory/base/cf_base.rb +112 -102
- data/lib/cf_factory/base/cf_ec2_tag.rb +34 -34
- data/lib/cf_factory/base/cf_generator.rb +20 -20
- data/lib/cf_factory/base/cf_helper.rb +93 -93
- data/lib/cf_factory/base/cf_inner.rb +74 -74
- data/lib/cf_factory/base/cf_main.rb +103 -103
- data/lib/cf_factory/base/cf_mapping.rb +28 -28
- data/lib/cf_factory/base/cf_named_inner.rb +70 -1
- data/lib/cf_factory/base/cf_output.rb +26 -26
- data/lib/cf_factory/base/cf_parameter.rb +27 -27
- data/lib/cf_factory/base/cf_script_reader.rb +34 -34
- data/lib/cf_factory/cloudformation/cf_cloud_formation_init.rb +27 -27
- data/lib/cf_factory/cloudformation/cf_cloudformation_command.rb +39 -39
- data/lib/cf_factory/cloudformation/cf_cloudformation_commands.rb +27 -27
- data/lib/cf_factory/cloudformation/cf_cloudformation_config.rb +35 -35
- data/lib/cf_factory/cloudformation/cf_cloudformation_file.rb +40 -40
- data/lib/cf_factory/cloudformation/cf_cloudformation_files.rb +27 -27
- data/lib/cf_factory/cloudformation/cf_cloudformation_inner.rb +30 -30
- data/lib/cf_factory/cloudformation/cf_cloudformation_package.rb +36 -36
- data/lib/cf_factory/cloudformation/cf_cloudformation_packages.rb +44 -44
- data/lib/cf_factory/cloudformation/cf_cloudformation_sources.rb +32 -32
- data/lib/cf_factory/cloudformation/cf_init_script.rb +80 -80
- data/lib/cf_factory/cloudfront/cf_cache_behavior.rb +39 -39
- data/lib/cf_factory/cloudfront/cf_cache_behaviors.rb +30 -30
- data/lib/cf_factory/cloudfront/cf_cloudfront_distribution.rb +66 -66
- data/lib/cf_factory/cloudfront/cf_custom_origin_config.rb +39 -39
- data/lib/cf_factory/cloudfront/cf_default_cache_behavior.rb +34 -34
- data/lib/cf_factory/cloudfront/cf_distribution_config.rb +33 -33
- data/lib/cf_factory/cloudfront/cf_forwarded_values.rb +27 -27
- data/lib/cf_factory/cloudfront/cf_logging.rb +26 -26
- data/lib/cf_factory/cloudfront/cf_origin.rb +42 -42
- data/lib/cf_factory/cloudfront/cf_s3_origin_config.rb +27 -27
- data/lib/cf_factory/cloudwatch/cf_cloud_watch_alarm.rb +60 -60
- data/lib/cf_factory/dynamo/cf_dynamo_table.rb +45 -45
- data/lib/cf_factory/eb/cd_eb_solution_stack.rb +27 -28
- data/lib/cf_factory/eb/cf_eb_application.rb +41 -41
- data/lib/cf_factory/eb/cf_eb_application_version.rb +24 -24
- data/lib/cf_factory/eb/cf_eb_configuration_template.rb +36 -36
- data/lib/cf_factory/eb/cf_eb_environment.rb +56 -56
- data/lib/cf_factory/eb/cf_eb_option_setting.rb +19 -19
- data/lib/cf_factory/ec2/cf_ebs_volume.rb +56 -56
- data/lib/cf_factory/ec2/cf_ec2_instance.rb +80 -66
- data/lib/cf_factory/ec2/cf_ec2_security_group.rb +42 -42
- data/lib/cf_factory/ec2/cf_ec2_security_group_egress.rb +30 -30
- data/lib/cf_factory/ec2/cf_ec2_security_group_ingress.rb +41 -41
- data/lib/cf_factory/ec2/cf_eip.rb +28 -28
- data/lib/cf_factory/ec2/cf_eip_association.rb +33 -31
- data/lib/cf_factory/ec2/cf_inner_network_interface.rb +26 -0
- data/lib/cf_factory/ec2/cf_network_interface.rb +40 -0
- data/lib/cf_factory/elb/cf_app_cookie_stickiness_policy.rb +17 -17
- data/lib/cf_factory/elb/cf_elb.rb +51 -51
- data/lib/cf_factory/elb/cf_health_check.rb +25 -25
- data/lib/cf_factory/elb/cf_lb_cookie_stickiness_policy.rb +17 -17
- data/lib/cf_factory/elb/cf_listener.rb +28 -28
- data/lib/cf_factory/help/fixes.rb +15 -15
- data/lib/cf_factory/help/ip_mask.rb +167 -167
- data/lib/cf_factory/help/template_validation.rb +30 -30
- data/lib/cf_factory/iam/cf_iam_access_key.rb +34 -34
- data/lib/cf_factory/iam/cf_iam_group.rb +32 -32
- data/lib/cf_factory/iam/cf_iam_instance_profile.rb +32 -32
- data/lib/cf_factory/iam/cf_iam_policy.rb +20 -20
- data/lib/cf_factory/iam/cf_iam_role.rb +58 -58
- data/lib/cf_factory/iam/cf_iam_statement.rb +25 -25
- data/lib/cf_factory/iam/cf_iam_user.rb +36 -36
- data/lib/cf_factory/iam/cf_policy_document.rb +21 -21
- data/lib/cf_factory/modules/base_vpc.rb +63 -63
- data/lib/cf_factory/rds/cf_rds_instance.rb +55 -55
- data/lib/cf_factory/rds/cf_rds_security_group.rb +35 -35
- data/lib/cf_factory/rds/cf_rds_security_group_ingress.rb +31 -31
- data/lib/cf_factory/rds/cf_rds_subnet_group.rb +31 -31
- data/lib/cf_factory/route53/cf_elb_alias_target.rb +23 -23
- data/lib/cf_factory/route53/cf_record_set.rb +63 -63
- data/lib/cf_factory/route53/cf_route53_record_set.rb +63 -63
- data/lib/cf_factory/route53/cf_route53_record_set_group.rb +44 -44
- data/lib/cf_factory/s3/cf_s3_bucket.rb +34 -34
- data/lib/cf_factory/s3/cf_web_site_config.rb +26 -26
- data/lib/cf_factory/sqs/cf_sqs_queue.rb +28 -28
- data/lib/cf_factory/vpc/cf_attach_gateway.rb +30 -30
- data/lib/cf_factory/vpc/cf_internet_gateway.rb +32 -32
- data/lib/cf_factory/vpc/cf_network_acl.rb +41 -41
- data/lib/cf_factory/vpc/cf_network_acl_association.rb +26 -26
- data/lib/cf_factory/vpc/cf_network_acl_entry.rb +39 -39
- data/lib/cf_factory/vpc/cf_route.rb +45 -45
- data/lib/cf_factory/vpc/cf_route_table.rb +43 -43
- data/lib/cf_factory/vpc/cf_route_table_association.rb +26 -26
- data/lib/cf_factory/vpc/cf_subnet.rb +50 -50
- data/lib/cf_factory/vpc/cf_vpc.rb +66 -66
- data/lib/cf_factory.rb +12 -12
- metadata +120 -91
|
@@ -1,66 +1,66 @@
|
|
|
1
|
-
require 'cf_factory/base/cf_base'
|
|
2
|
-
|
|
3
|
-
module CfFactory
|
|
4
|
-
class CfVpc
|
|
5
|
-
include CfBase
|
|
6
|
-
|
|
7
|
-
def initialize(cidr, name = "MyVpc")
|
|
8
|
-
@cidr = cidr
|
|
9
|
-
@name = name
|
|
10
|
-
@subnets = []
|
|
11
|
-
@igws = []
|
|
12
|
-
@route_tables = []
|
|
13
|
-
@network_acls = []
|
|
14
|
-
end
|
|
15
|
-
|
|
16
|
-
def get_cf_type
|
|
17
|
-
"AWS::EC2::VPC"
|
|
18
|
-
end
|
|
19
|
-
|
|
20
|
-
def get_cf_attributes
|
|
21
|
-
{}
|
|
22
|
-
end
|
|
23
|
-
|
|
24
|
-
def get_cf_properties
|
|
25
|
-
{"CidrBlock" => @cidr}
|
|
26
|
-
end
|
|
27
|
-
|
|
28
|
-
def add_subnet(subnet)
|
|
29
|
-
subnet.set_vpc(self)
|
|
30
|
-
@subnets << subnet
|
|
31
|
-
end
|
|
32
|
-
|
|
33
|
-
def add_route_table(route_table)
|
|
34
|
-
route_table.set_vpc(self)
|
|
35
|
-
@route_tables << route_table
|
|
36
|
-
end
|
|
37
|
-
|
|
38
|
-
def add_internet_gateway(igw)
|
|
39
|
-
@igws << igw
|
|
40
|
-
end
|
|
41
|
-
|
|
42
|
-
def add_network_acl(network_acl)
|
|
43
|
-
network_acl.set_vpc(self)
|
|
44
|
-
@network_acls << network_acl
|
|
45
|
-
end
|
|
46
|
-
|
|
47
|
-
def generate
|
|
48
|
-
super
|
|
49
|
-
@igws.each() {|ig|
|
|
50
|
-
@result += ig.generate
|
|
51
|
-
}
|
|
52
|
-
@route_tables.each() {|rt|
|
|
53
|
-
@result += rt.generate
|
|
54
|
-
}
|
|
55
|
-
@network_acls.each() {|acl|
|
|
56
|
-
@result += acl.generate
|
|
57
|
-
}
|
|
58
|
-
@subnets.each() {|sn|
|
|
59
|
-
@result += sn.generate
|
|
60
|
-
}
|
|
61
|
-
#
|
|
62
|
-
@result
|
|
63
|
-
end
|
|
64
|
-
|
|
65
|
-
end
|
|
66
|
-
end
|
|
1
|
+
require 'cf_factory/base/cf_base'
|
|
2
|
+
|
|
3
|
+
module CfFactory
|
|
4
|
+
class CfVpc
|
|
5
|
+
include CfBase
|
|
6
|
+
|
|
7
|
+
def initialize(cidr, name = "MyVpc")
|
|
8
|
+
@cidr = cidr
|
|
9
|
+
@name = name
|
|
10
|
+
@subnets = []
|
|
11
|
+
@igws = []
|
|
12
|
+
@route_tables = []
|
|
13
|
+
@network_acls = []
|
|
14
|
+
end
|
|
15
|
+
|
|
16
|
+
def get_cf_type
|
|
17
|
+
"AWS::EC2::VPC"
|
|
18
|
+
end
|
|
19
|
+
|
|
20
|
+
def get_cf_attributes
|
|
21
|
+
{}
|
|
22
|
+
end
|
|
23
|
+
|
|
24
|
+
def get_cf_properties
|
|
25
|
+
{"CidrBlock" => @cidr}
|
|
26
|
+
end
|
|
27
|
+
|
|
28
|
+
def add_subnet(subnet)
|
|
29
|
+
subnet.set_vpc(self)
|
|
30
|
+
@subnets << subnet
|
|
31
|
+
end
|
|
32
|
+
|
|
33
|
+
def add_route_table(route_table)
|
|
34
|
+
route_table.set_vpc(self)
|
|
35
|
+
@route_tables << route_table
|
|
36
|
+
end
|
|
37
|
+
|
|
38
|
+
def add_internet_gateway(igw)
|
|
39
|
+
@igws << igw
|
|
40
|
+
end
|
|
41
|
+
|
|
42
|
+
def add_network_acl(network_acl)
|
|
43
|
+
network_acl.set_vpc(self)
|
|
44
|
+
@network_acls << network_acl
|
|
45
|
+
end
|
|
46
|
+
|
|
47
|
+
def generate
|
|
48
|
+
super
|
|
49
|
+
@igws.each() {|ig|
|
|
50
|
+
@result += ig.generate
|
|
51
|
+
}
|
|
52
|
+
@route_tables.each() {|rt|
|
|
53
|
+
@result += rt.generate
|
|
54
|
+
}
|
|
55
|
+
@network_acls.each() {|acl|
|
|
56
|
+
@result += acl.generate
|
|
57
|
+
}
|
|
58
|
+
@subnets.each() {|sn|
|
|
59
|
+
@result += sn.generate
|
|
60
|
+
}
|
|
61
|
+
#
|
|
62
|
+
@result
|
|
63
|
+
end
|
|
64
|
+
|
|
65
|
+
end
|
|
66
|
+
end
|
data/lib/cf_factory.rb
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
require 'require_all'
|
|
2
|
-
|
|
3
|
-
require_rel 'cf_factory'
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
1
|
+
require 'require_all'
|
|
2
|
+
|
|
3
|
+
require_rel 'cf_factory'
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: cf_factory
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.5
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -10,11 +10,11 @@ authors:
|
|
|
10
10
|
autorequire:
|
|
11
11
|
bindir: bin
|
|
12
12
|
cert_chain: []
|
|
13
|
-
date: 2013-
|
|
13
|
+
date: 2013-09-12 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: require_all
|
|
17
|
-
requirement:
|
|
17
|
+
requirement: !ruby/object:Gem::Requirement
|
|
18
18
|
none: false
|
|
19
19
|
requirements:
|
|
20
20
|
- - ! '>='
|
|
@@ -22,18 +22,44 @@ dependencies:
|
|
|
22
22
|
version: 1.2.1
|
|
23
23
|
type: :runtime
|
|
24
24
|
prerelease: false
|
|
25
|
-
version_requirements:
|
|
25
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
26
|
+
none: false
|
|
27
|
+
requirements:
|
|
28
|
+
- - ! '>='
|
|
29
|
+
- !ruby/object:Gem::Version
|
|
30
|
+
version: 1.2.1
|
|
26
31
|
- !ruby/object:Gem::Dependency
|
|
27
32
|
name: rubyzip
|
|
28
|
-
requirement:
|
|
33
|
+
requirement: !ruby/object:Gem::Requirement
|
|
34
|
+
none: false
|
|
35
|
+
requirements:
|
|
36
|
+
- - ! '>='
|
|
37
|
+
- !ruby/object:Gem::Version
|
|
38
|
+
version: 0.9.9
|
|
39
|
+
type: :runtime
|
|
40
|
+
prerelease: false
|
|
41
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
29
42
|
none: false
|
|
30
43
|
requirements:
|
|
31
44
|
- - ! '>='
|
|
32
45
|
- !ruby/object:Gem::Version
|
|
33
46
|
version: 0.9.9
|
|
47
|
+
- !ruby/object:Gem::Dependency
|
|
48
|
+
name: aws-sdk
|
|
49
|
+
requirement: !ruby/object:Gem::Requirement
|
|
50
|
+
none: false
|
|
51
|
+
requirements:
|
|
52
|
+
- - ! '>='
|
|
53
|
+
- !ruby/object:Gem::Version
|
|
54
|
+
version: 1.8.5
|
|
34
55
|
type: :runtime
|
|
35
56
|
prerelease: false
|
|
36
|
-
version_requirements:
|
|
57
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
58
|
+
none: false
|
|
59
|
+
requirements:
|
|
60
|
+
- - ! '>='
|
|
61
|
+
- !ruby/object:Gem::Version
|
|
62
|
+
version: 1.8.5
|
|
37
63
|
description: Cf-factory is a Ruby library to generate CloudFormation templates.
|
|
38
64
|
email:
|
|
39
65
|
- majung@amazon.com
|
|
@@ -43,110 +69,113 @@ executables:
|
|
|
43
69
|
extensions: []
|
|
44
70
|
extra_rdoc_files: []
|
|
45
71
|
files:
|
|
46
|
-
- lib/cf_factory/
|
|
47
|
-
- lib/cf_factory/
|
|
48
|
-
- lib/cf_factory/
|
|
49
|
-
- lib/cf_factory/
|
|
50
|
-
- lib/cf_factory/
|
|
51
|
-
- lib/cf_factory/
|
|
52
|
-
- lib/cf_factory/
|
|
53
|
-
- lib/cf_factory/
|
|
54
|
-
- lib/cf_factory/
|
|
55
|
-
- lib/cf_factory/
|
|
56
|
-
- lib/cf_factory/
|
|
57
|
-
- lib/cf_factory/
|
|
58
|
-
- lib/cf_factory/
|
|
59
|
-
- lib/cf_factory/
|
|
60
|
-
- lib/cf_factory/
|
|
61
|
-
- lib/cf_factory/
|
|
62
|
-
- lib/cf_factory/
|
|
63
|
-
- lib/cf_factory/
|
|
64
|
-
- lib/cf_factory/
|
|
65
|
-
- lib/cf_factory/
|
|
66
|
-
- lib/cf_factory/
|
|
67
|
-
- lib/cf_factory/
|
|
68
|
-
- lib/cf_factory/
|
|
69
|
-
- lib/cf_factory/
|
|
72
|
+
- lib/cf_factory/as/cf_as_group.rb
|
|
73
|
+
- lib/cf_factory/as/cf_as_launch_config.rb
|
|
74
|
+
- lib/cf_factory/as/cf_as_scaling_policy.rb
|
|
75
|
+
- lib/cf_factory/as/cf_as_update_policy.rb
|
|
76
|
+
- lib/cf_factory/base/cf_base.rb
|
|
77
|
+
- lib/cf_factory/base/cf_ec2_tag.rb
|
|
78
|
+
- lib/cf_factory/base/cf_generator.rb
|
|
79
|
+
- lib/cf_factory/base/cf_helper.rb
|
|
80
|
+
- lib/cf_factory/base/cf_inner.rb
|
|
81
|
+
- lib/cf_factory/base/cf_main.rb
|
|
82
|
+
- lib/cf_factory/base/cf_mapping.rb
|
|
83
|
+
- lib/cf_factory/base/cf_named_inner.rb
|
|
84
|
+
- lib/cf_factory/base/cf_output.rb
|
|
85
|
+
- lib/cf_factory/base/cf_parameter.rb
|
|
86
|
+
- lib/cf_factory/base/cf_script_reader.rb
|
|
87
|
+
- lib/cf_factory/cloudformation/cf_cloudformation_command.rb
|
|
88
|
+
- lib/cf_factory/cloudformation/cf_cloudformation_commands.rb
|
|
89
|
+
- lib/cf_factory/cloudformation/cf_cloudformation_config.rb
|
|
90
|
+
- lib/cf_factory/cloudformation/cf_cloudformation_file.rb
|
|
91
|
+
- lib/cf_factory/cloudformation/cf_cloudformation_files.rb
|
|
92
|
+
- lib/cf_factory/cloudformation/cf_cloudformation_inner.rb
|
|
93
|
+
- lib/cf_factory/cloudformation/cf_cloudformation_package.rb
|
|
94
|
+
- lib/cf_factory/cloudformation/cf_cloudformation_packages.rb
|
|
95
|
+
- lib/cf_factory/cloudformation/cf_cloudformation_sources.rb
|
|
96
|
+
- lib/cf_factory/cloudformation/cf_cloud_formation_init.rb
|
|
97
|
+
- lib/cf_factory/cloudformation/cf_init_script.rb
|
|
70
98
|
- lib/cf_factory/cloudfront/cf_cache_behavior.rb
|
|
71
|
-
- lib/cf_factory/cloudfront/
|
|
99
|
+
- lib/cf_factory/cloudfront/cf_cache_behaviors.rb
|
|
100
|
+
- lib/cf_factory/cloudfront/cf_cloudfront_distribution.rb
|
|
72
101
|
- lib/cf_factory/cloudfront/cf_custom_origin_config.rb
|
|
102
|
+
- lib/cf_factory/cloudfront/cf_default_cache_behavior.rb
|
|
103
|
+
- lib/cf_factory/cloudfront/cf_distribution_config.rb
|
|
73
104
|
- lib/cf_factory/cloudfront/cf_forwarded_values.rb
|
|
74
|
-
- lib/cf_factory/cloudfront/cf_cache_behaviors.rb
|
|
75
105
|
- lib/cf_factory/cloudfront/cf_logging.rb
|
|
76
106
|
- lib/cf_factory/cloudfront/cf_origin.rb
|
|
77
|
-
- lib/cf_factory/cloudfront/
|
|
78
|
-
- lib/cf_factory/
|
|
107
|
+
- lib/cf_factory/cloudfront/cf_s3_origin_config.rb
|
|
108
|
+
- lib/cf_factory/cloudwatch/cf_cloud_watch_alarm.rb
|
|
79
109
|
- lib/cf_factory/dynamo/cf_dynamo_table.rb
|
|
80
|
-
- lib/cf_factory/modules/base_vpc.rb
|
|
81
|
-
- lib/cf_factory/eb/cf_eb_environment.rb
|
|
82
|
-
- lib/cf_factory/eb/cf_eb_application.rb
|
|
83
110
|
- lib/cf_factory/eb/cd_eb_solution_stack.rb
|
|
84
|
-
- lib/cf_factory/eb/
|
|
85
|
-
- lib/cf_factory/eb/cf_eb_configuration_template.rb
|
|
111
|
+
- lib/cf_factory/eb/cf_eb_application.rb
|
|
86
112
|
- lib/cf_factory/eb/cf_eb_application_version.rb
|
|
87
|
-
- lib/cf_factory/
|
|
88
|
-
- lib/cf_factory/
|
|
89
|
-
- lib/cf_factory/
|
|
90
|
-
- lib/cf_factory/
|
|
91
|
-
- lib/cf_factory/
|
|
92
|
-
- lib/cf_factory/
|
|
93
|
-
- lib/cf_factory/
|
|
94
|
-
- lib/cf_factory/
|
|
95
|
-
- lib/cf_factory/
|
|
96
|
-
- lib/cf_factory/
|
|
97
|
-
- lib/cf_factory/
|
|
113
|
+
- lib/cf_factory/eb/cf_eb_configuration_template.rb
|
|
114
|
+
- lib/cf_factory/eb/cf_eb_environment.rb
|
|
115
|
+
- lib/cf_factory/eb/cf_eb_option_setting.rb
|
|
116
|
+
- lib/cf_factory/ec2/cf_ebs_volume.rb
|
|
117
|
+
- lib/cf_factory/ec2/cf_ec2_instance.rb
|
|
118
|
+
- lib/cf_factory/ec2/cf_ec2_security_group.rb
|
|
119
|
+
- lib/cf_factory/ec2/cf_ec2_security_group_egress.rb
|
|
120
|
+
- lib/cf_factory/ec2/cf_ec2_security_group_ingress.rb
|
|
121
|
+
- lib/cf_factory/ec2/cf_eip.rb
|
|
122
|
+
- lib/cf_factory/ec2/cf_eip_association.rb
|
|
123
|
+
- lib/cf_factory/ec2/cf_inner_network_interface.rb
|
|
124
|
+
- lib/cf_factory/ec2/cf_network_interface.rb
|
|
125
|
+
- lib/cf_factory/elb/cf_app_cookie_stickiness_policy.rb
|
|
126
|
+
- lib/cf_factory/elb/cf_elb.rb
|
|
127
|
+
- lib/cf_factory/elb/cf_health_check.rb
|
|
128
|
+
- lib/cf_factory/elb/cf_lb_cookie_stickiness_policy.rb
|
|
129
|
+
- lib/cf_factory/elb/cf_listener.rb
|
|
130
|
+
- lib/cf_factory/help/fixes.rb
|
|
131
|
+
- lib/cf_factory/help/ip_mask.rb
|
|
132
|
+
- lib/cf_factory/help/template_validation.rb
|
|
133
|
+
- lib/cf_factory/iam/cf_iam_access_key.rb
|
|
134
|
+
- lib/cf_factory/iam/cf_iam_group.rb
|
|
135
|
+
- lib/cf_factory/iam/cf_iam_instance_profile.rb
|
|
136
|
+
- lib/cf_factory/iam/cf_iam_policy.rb
|
|
137
|
+
- lib/cf_factory/iam/cf_iam_role.rb
|
|
138
|
+
- lib/cf_factory/iam/cf_iam_statement.rb
|
|
139
|
+
- lib/cf_factory/iam/cf_iam_user.rb
|
|
140
|
+
- lib/cf_factory/iam/cf_policy_document.rb
|
|
141
|
+
- lib/cf_factory/modules/base_vpc.rb
|
|
98
142
|
- lib/cf_factory/rds/cf_rds_instance.rb
|
|
99
143
|
- lib/cf_factory/rds/cf_rds_security_group.rb
|
|
100
144
|
- lib/cf_factory/rds/cf_rds_security_group_ingress.rb
|
|
101
145
|
- lib/cf_factory/rds/cf_rds_subnet_group.rb
|
|
102
|
-
- lib/cf_factory/cloudwatch/cf_cloud_watch_alarm.rb
|
|
103
|
-
- lib/cf_factory/iam/cf_iam_user.rb
|
|
104
|
-
- lib/cf_factory/iam/cf_iam_access_key.rb
|
|
105
|
-
- lib/cf_factory/iam/cf_iam_policy.rb
|
|
106
|
-
- lib/cf_factory/iam/cf_iam_instance_profile.rb
|
|
107
|
-
- lib/cf_factory/iam/cf_policy_document.rb
|
|
108
|
-
- lib/cf_factory/iam/cf_iam_statement.rb
|
|
109
|
-
- lib/cf_factory/iam/cf_iam_group.rb
|
|
110
|
-
- lib/cf_factory/iam/cf_iam_role.rb
|
|
111
|
-
- lib/cf_factory/route53/cf_route53_record_set_group.rb
|
|
112
146
|
- lib/cf_factory/route53/cf_elb_alias_target.rb
|
|
113
|
-
- lib/cf_factory/route53/cf_route53_record_set.rb
|
|
114
147
|
- lib/cf_factory/route53/cf_record_set.rb
|
|
115
|
-
- lib/cf_factory/
|
|
116
|
-
- lib/cf_factory/
|
|
117
|
-
- lib/cf_factory/
|
|
118
|
-
- lib/cf_factory/
|
|
119
|
-
- lib/cf_factory/
|
|
120
|
-
- lib/cf_factory/
|
|
121
|
-
- lib/cf_factory/
|
|
122
|
-
- lib/cf_factory/
|
|
123
|
-
- lib/cf_factory/
|
|
124
|
-
- lib/cf_factory/
|
|
125
|
-
- lib/cf_factory/
|
|
126
|
-
- lib/cf_factory/
|
|
127
|
-
- lib/cf_factory/
|
|
128
|
-
- lib/cf_factory/
|
|
129
|
-
- lib/cf_factory/
|
|
130
|
-
- lib/cf_factory/cloudformation/cf_cloudformation_packages.rb
|
|
131
|
-
- lib/cf_factory/cloudformation/cf_cloudformation_files.rb
|
|
132
|
-
- lib/cf_factory/cloudformation/cf_cloudformation_config.rb
|
|
133
|
-
- lib/cf_factory/cloudformation/cf_cloudformation_command.rb
|
|
148
|
+
- lib/cf_factory/route53/cf_route53_record_set.rb
|
|
149
|
+
- lib/cf_factory/route53/cf_route53_record_set_group.rb
|
|
150
|
+
- lib/cf_factory/s3/cf_s3_bucket.rb
|
|
151
|
+
- lib/cf_factory/s3/cf_web_site_config.rb
|
|
152
|
+
- lib/cf_factory/sqs/cf_sqs_queue.rb
|
|
153
|
+
- lib/cf_factory/vpc/cf_attach_gateway.rb
|
|
154
|
+
- lib/cf_factory/vpc/cf_internet_gateway.rb
|
|
155
|
+
- lib/cf_factory/vpc/cf_network_acl.rb
|
|
156
|
+
- lib/cf_factory/vpc/cf_network_acl_association.rb
|
|
157
|
+
- lib/cf_factory/vpc/cf_network_acl_entry.rb
|
|
158
|
+
- lib/cf_factory/vpc/cf_route.rb
|
|
159
|
+
- lib/cf_factory/vpc/cf_route_table.rb
|
|
160
|
+
- lib/cf_factory/vpc/cf_route_table_association.rb
|
|
161
|
+
- lib/cf_factory/vpc/cf_subnet.rb
|
|
162
|
+
- lib/cf_factory/vpc/cf_vpc.rb
|
|
134
163
|
- lib/cf_factory.rb
|
|
135
|
-
- examples/elastic_beanstalk_example.rb
|
|
136
|
-
- examples/instance_with_eip.rb
|
|
137
|
-
- examples/elb_with_cloudfront.rb
|
|
138
|
-
- examples/s3_with_cloudfront.rb
|
|
139
|
-
- examples/nat_mutual_monitoring.rb
|
|
140
164
|
- examples/base_vpc.rb
|
|
141
|
-
- examples/instance_with_yum.rb
|
|
142
|
-
- examples/cloudinit_script_with_autoscaling.rb
|
|
143
165
|
- examples/cloudfront_private.rb
|
|
144
166
|
- examples/cloudinit_script_for_one_instance.rb
|
|
145
|
-
- examples/
|
|
146
|
-
- examples/test_vpc.rb
|
|
167
|
+
- examples/cloudinit_script_with_autoscaling.rb
|
|
147
168
|
- examples/dynamodb_table.rb
|
|
148
|
-
- examples/
|
|
169
|
+
- examples/elastic_beanstalk_example.rb
|
|
170
|
+
- examples/elb_with_cloudfront.rb
|
|
171
|
+
- examples/instance_with_eip.rb
|
|
172
|
+
- examples/instance_with_yum.rb
|
|
173
|
+
- examples/just_an_instance.rb
|
|
174
|
+
- examples/nat_mutual_monitoring.rb
|
|
149
175
|
- examples/play_with_region_and_zones.rb
|
|
176
|
+
- examples/ra_web_hosting.rb
|
|
177
|
+
- examples/s3_with_cloudfront.rb
|
|
178
|
+
- examples/test_vpc.rb
|
|
150
179
|
- bin/cf_factory
|
|
151
180
|
homepage: https://github.com/cgorski/cf-factory
|
|
152
181
|
licenses: []
|
|
@@ -168,7 +197,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
168
197
|
version: '0'
|
|
169
198
|
requirements: []
|
|
170
199
|
rubyforge_project:
|
|
171
|
-
rubygems_version: 1.8.
|
|
200
|
+
rubygems_version: 1.8.23
|
|
172
201
|
signing_key:
|
|
173
202
|
specification_version: 3
|
|
174
203
|
summary: CloudFormation template generator
|