bosh_cli_plugin_aws 1.5.0.pre.1113
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/bosh/cli/commands/aws.rb +464 -0
- data/lib/bosh_cli_plugin_aws/aws_config.rb +141 -0
- data/lib/bosh_cli_plugin_aws/aws_provider.rb +53 -0
- data/lib/bosh_cli_plugin_aws/bat_manifest.rb +40 -0
- data/lib/bosh_cli_plugin_aws/bootstrap.rb +31 -0
- data/lib/bosh_cli_plugin_aws/bosh_bootstrap.rb +158 -0
- data/lib/bosh_cli_plugin_aws/bosh_manifest.rb +71 -0
- data/lib/bosh_cli_plugin_aws/ec2.rb +265 -0
- data/lib/bosh_cli_plugin_aws/elb.rb +132 -0
- data/lib/bosh_cli_plugin_aws/micro_bosh_bootstrap.rb +64 -0
- data/lib/bosh_cli_plugin_aws/microbosh_manifest.rb +117 -0
- data/lib/bosh_cli_plugin_aws/migration.rb +40 -0
- data/lib/bosh_cli_plugin_aws/migration_helper.rb +150 -0
- data/lib/bosh_cli_plugin_aws/migrator.rb +137 -0
- data/lib/bosh_cli_plugin_aws/rds.rb +182 -0
- data/lib/bosh_cli_plugin_aws/route53.rb +103 -0
- data/lib/bosh_cli_plugin_aws/s3.rb +93 -0
- data/lib/bosh_cli_plugin_aws/version.rb +5 -0
- data/lib/bosh_cli_plugin_aws/vpc.rb +181 -0
- data/lib/bosh_cli_plugin_aws.rb +31 -0
- data/migrations/20130412000811_create_key_pairs.rb +8 -0
- data/migrations/20130412004642_create_vpc.rb +65 -0
- data/migrations/20130412181302_create_route53_records.rb +37 -0
- data/migrations/20130412183544_create_rds_dbs.rb +35 -0
- data/migrations/20130412192351_create_s3.rb +4 -0
- data/migrations/20130529212130_create_more_unique_s3_buckets.rb +33 -0
- data/migrations/20130531180445_create_bosh_rds_db.rb +30 -0
- data/migrations/20130826150635_update_elb_for_websockets.rb +97 -0
- data/migrations/20130827000001_add_secondary_az_to_vpc.rb +34 -0
- data/templates/aws_configuration_template.yml.erb +187 -0
- data/templates/aws_migration.erb +5 -0
- data/templates/aws_migration_spec.erb +12 -0
- data/templates/bat.yml.erb +84 -0
- data/templates/bosh.yml.erb +198 -0
- data/templates/micro_bosh.yml.erb +82 -0
- metadata +163 -0
metadata
ADDED
@@ -0,0 +1,163 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: bosh_cli_plugin_aws
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.5.0.pre.1113
|
5
|
+
prerelease: 6
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- VMware
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2013-10-16 00:00:00.000000000 Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: bosh_cli
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
17
|
+
none: false
|
18
|
+
requirements:
|
19
|
+
- - ~>
|
20
|
+
- !ruby/object:Gem::Version
|
21
|
+
version: 1.5.0.pre.1113
|
22
|
+
type: :runtime
|
23
|
+
prerelease: false
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
26
|
+
requirements:
|
27
|
+
- - ~>
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: 1.5.0.pre.1113
|
30
|
+
- !ruby/object:Gem::Dependency
|
31
|
+
name: bosh_aws_cpi
|
32
|
+
requirement: !ruby/object:Gem::Requirement
|
33
|
+
none: false
|
34
|
+
requirements:
|
35
|
+
- - ~>
|
36
|
+
- !ruby/object:Gem::Version
|
37
|
+
version: 1.5.0.pre.1113
|
38
|
+
type: :runtime
|
39
|
+
prerelease: false
|
40
|
+
version_requirements: !ruby/object:Gem::Requirement
|
41
|
+
none: false
|
42
|
+
requirements:
|
43
|
+
- - ~>
|
44
|
+
- !ruby/object:Gem::Version
|
45
|
+
version: 1.5.0.pre.1113
|
46
|
+
- !ruby/object:Gem::Dependency
|
47
|
+
name: bosh_cli_plugin_micro
|
48
|
+
requirement: !ruby/object:Gem::Requirement
|
49
|
+
none: false
|
50
|
+
requirements:
|
51
|
+
- - ~>
|
52
|
+
- !ruby/object:Gem::Version
|
53
|
+
version: 1.5.0.pre.1113
|
54
|
+
type: :runtime
|
55
|
+
prerelease: false
|
56
|
+
version_requirements: !ruby/object:Gem::Requirement
|
57
|
+
none: false
|
58
|
+
requirements:
|
59
|
+
- - ~>
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: 1.5.0.pre.1113
|
62
|
+
- !ruby/object:Gem::Dependency
|
63
|
+
name: bosh-stemcell
|
64
|
+
requirement: !ruby/object:Gem::Requirement
|
65
|
+
none: false
|
66
|
+
requirements:
|
67
|
+
- - ~>
|
68
|
+
- !ruby/object:Gem::Version
|
69
|
+
version: 1.5.0.pre.1113
|
70
|
+
type: :runtime
|
71
|
+
prerelease: false
|
72
|
+
version_requirements: !ruby/object:Gem::Requirement
|
73
|
+
none: false
|
74
|
+
requirements:
|
75
|
+
- - ~>
|
76
|
+
- !ruby/object:Gem::Version
|
77
|
+
version: 1.5.0.pre.1113
|
78
|
+
- !ruby/object:Gem::Dependency
|
79
|
+
name: rspec-fire
|
80
|
+
requirement: !ruby/object:Gem::Requirement
|
81
|
+
none: false
|
82
|
+
requirements:
|
83
|
+
- - ! '>='
|
84
|
+
- !ruby/object:Gem::Version
|
85
|
+
version: '0'
|
86
|
+
type: :development
|
87
|
+
prerelease: false
|
88
|
+
version_requirements: !ruby/object:Gem::Requirement
|
89
|
+
none: false
|
90
|
+
requirements:
|
91
|
+
- - ! '>='
|
92
|
+
- !ruby/object:Gem::Version
|
93
|
+
version: '0'
|
94
|
+
description: ! 'BOSH plugin to easily create and delete an AWS VPC
|
95
|
+
|
96
|
+
cfd471'
|
97
|
+
email: support@cloudfoundry.com
|
98
|
+
executables: []
|
99
|
+
extensions: []
|
100
|
+
extra_rdoc_files: []
|
101
|
+
files:
|
102
|
+
- lib/bosh/cli/commands/aws.rb
|
103
|
+
- lib/bosh_cli_plugin_aws.rb
|
104
|
+
- lib/bosh_cli_plugin_aws/aws_config.rb
|
105
|
+
- lib/bosh_cli_plugin_aws/aws_provider.rb
|
106
|
+
- lib/bosh_cli_plugin_aws/bat_manifest.rb
|
107
|
+
- lib/bosh_cli_plugin_aws/bootstrap.rb
|
108
|
+
- lib/bosh_cli_plugin_aws/bosh_bootstrap.rb
|
109
|
+
- lib/bosh_cli_plugin_aws/bosh_manifest.rb
|
110
|
+
- lib/bosh_cli_plugin_aws/ec2.rb
|
111
|
+
- lib/bosh_cli_plugin_aws/elb.rb
|
112
|
+
- lib/bosh_cli_plugin_aws/micro_bosh_bootstrap.rb
|
113
|
+
- lib/bosh_cli_plugin_aws/microbosh_manifest.rb
|
114
|
+
- lib/bosh_cli_plugin_aws/migration.rb
|
115
|
+
- lib/bosh_cli_plugin_aws/migration_helper.rb
|
116
|
+
- lib/bosh_cli_plugin_aws/migrator.rb
|
117
|
+
- lib/bosh_cli_plugin_aws/rds.rb
|
118
|
+
- lib/bosh_cli_plugin_aws/route53.rb
|
119
|
+
- lib/bosh_cli_plugin_aws/s3.rb
|
120
|
+
- lib/bosh_cli_plugin_aws/version.rb
|
121
|
+
- lib/bosh_cli_plugin_aws/vpc.rb
|
122
|
+
- migrations/20130412000811_create_key_pairs.rb
|
123
|
+
- migrations/20130412004642_create_vpc.rb
|
124
|
+
- migrations/20130412181302_create_route53_records.rb
|
125
|
+
- migrations/20130412183544_create_rds_dbs.rb
|
126
|
+
- migrations/20130412192351_create_s3.rb
|
127
|
+
- migrations/20130529212130_create_more_unique_s3_buckets.rb
|
128
|
+
- migrations/20130531180445_create_bosh_rds_db.rb
|
129
|
+
- migrations/20130826150635_update_elb_for_websockets.rb
|
130
|
+
- migrations/20130827000001_add_secondary_az_to_vpc.rb
|
131
|
+
- templates/aws_configuration_template.yml.erb
|
132
|
+
- templates/aws_migration.erb
|
133
|
+
- templates/aws_migration_spec.erb
|
134
|
+
- templates/bat.yml.erb
|
135
|
+
- templates/bosh.yml.erb
|
136
|
+
- templates/micro_bosh.yml.erb
|
137
|
+
homepage: https://github.com/cloudfoundry/bosh
|
138
|
+
licenses:
|
139
|
+
- Apache 2.0
|
140
|
+
post_install_message:
|
141
|
+
rdoc_options: []
|
142
|
+
require_paths:
|
143
|
+
- lib
|
144
|
+
- migrations
|
145
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
146
|
+
none: false
|
147
|
+
requirements:
|
148
|
+
- - ! '>='
|
149
|
+
- !ruby/object:Gem::Version
|
150
|
+
version: 1.9.3
|
151
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
152
|
+
none: false
|
153
|
+
requirements:
|
154
|
+
- - ! '>'
|
155
|
+
- !ruby/object:Gem::Version
|
156
|
+
version: 1.3.1
|
157
|
+
requirements: []
|
158
|
+
rubyforge_project:
|
159
|
+
rubygems_version: 1.8.23
|
160
|
+
signing_key:
|
161
|
+
specification_version: 3
|
162
|
+
summary: BOSH plugin to easily create and delete an AWS VPC
|
163
|
+
test_files: []
|