cfndk 0.0.7 → 0.1.2
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.
- checksums.yaml +5 -5
- data/.circleci/config.yml +79 -0
- data/.gitignore +1 -1
- data/.rspec +2 -0
- data/.rspec_parallel +6 -0
- data/.simplecov +9 -0
- data/Gemfile +11 -1
- data/Gemfile.lock +815 -0
- data/README.md +269 -76
- data/bin/cfndk +3 -18
- data/cfndk.gemspec +15 -6
- data/docker/Dockerfile +8 -0
- data/docker/build.sh +3 -0
- data/docker/cfndk.sh +14 -0
- data/lib/cfndk.rb +36 -0
- data/lib/cfndk/change_set_command.rb +103 -0
- data/lib/cfndk/command.rb +125 -119
- data/lib/cfndk/config_file_loadable.rb +13 -0
- data/lib/cfndk/credential_provider_chain.rb +12 -42
- data/lib/cfndk/credential_resolvable.rb +10 -0
- data/lib/cfndk/diff.rb +38 -0
- data/lib/cfndk/global_config.rb +46 -0
- data/lib/cfndk/key_pair.rb +66 -14
- data/lib/cfndk/key_pair_command.rb +60 -0
- data/lib/cfndk/key_pairs.rb +22 -5
- data/lib/cfndk/logger.rb +12 -3
- data/lib/cfndk/stack.rb +427 -126
- data/lib/cfndk/stack_command.rb +128 -0
- data/lib/cfndk/stacks.rb +48 -22
- data/lib/cfndk/subcommand_help_returnable.rb +16 -0
- data/lib/cfndk/template_packager.rb +210 -0
- data/lib/cfndk/uuid.rb +10 -0
- data/lib/cfndk/version.rb +1 -1
- data/skel/cfndk.yml +4 -0
- data/spec/.gitignore +1 -0
- data/spec/cfndk_change_set_create_spec.rb +436 -0
- data/spec/cfndk_change_set_destroy_spec.rb +160 -0
- data/spec/cfndk_change_set_execute_spec.rb +179 -0
- data/spec/cfndk_change_set_report_spec.rb +107 -0
- data/spec/cfndk_change_set_spec.rb +37 -0
- data/spec/cfndk_create_spec.rb +504 -0
- data/spec/cfndk_destroy_spec.rb +148 -0
- data/spec/cfndk_keypiar_spec.rb +397 -0
- data/spec/cfndk_report_spec.rb +164 -0
- data/spec/cfndk_spec.rb +103 -0
- data/spec/cfndk_stack_create_spec.rb +814 -0
- data/spec/cfndk_stack_destroy_spec.rb +225 -0
- data/spec/cfndk_stack_report_spec.rb +181 -0
- data/spec/cfndk_stack_spec.rb +133 -0
- data/spec/cfndk_stack_update_spec.rb +553 -0
- data/spec/fixtures/big_vpc.yaml +533 -0
- data/spec/fixtures/empty_resource.yaml +2 -0
- data/spec/fixtures/iam.json +8 -0
- data/spec/fixtures/iam.yaml +38 -0
- data/spec/fixtures/iam_different.json +8 -0
- data/spec/fixtures/invalid_vpc.yaml +21 -0
- data/spec/fixtures/lambda_function/index.js +4 -0
- data/spec/fixtures/lambda_function/lambda_function.json +4 -0
- data/spec/fixtures/lambda_function/lambda_function.yaml +28 -0
- data/spec/fixtures/nested_stack.json +35 -0
- data/spec/fixtures/nested_stack.yaml +20 -0
- data/spec/fixtures/serverless_function/index.js +4 -0
- data/spec/fixtures/serverless_function/serverless_function.json +4 -0
- data/spec/fixtures/serverless_function/serverless_function.yaml +21 -0
- data/spec/fixtures/sg.json +8 -0
- data/spec/fixtures/sg.yaml +27 -0
- data/spec/fixtures/sg_different.yaml +22 -0
- data/spec/fixtures/stack.json +8 -0
- data/spec/fixtures/stack.template.json +39 -0
- data/spec/fixtures/stack.yaml +22 -0
- data/spec/fixtures/vpc.json +8 -0
- data/spec/fixtures/vpc.template.json +40 -0
- data/spec/fixtures/vpc.yaml +21 -0
- data/spec/fixtures/vpc_different.yaml +21 -0
- data/spec/spec_helper.rb +14 -0
- data/spec/support/aruba.rb +6 -0
- data/vagrant/Vagrantfile +89 -0
- metadata +259 -31
data/spec/spec_helper.rb
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
$LOAD_PATH.unshift File.expand_path('../../lib', __FILE__)
|
2
|
+
|
3
|
+
if RUBY_VERSION < '1.9.3'
|
4
|
+
::Dir.glob(::File.expand_path('../support/*.rb', __FILE__)).each { |f| require File.join(File.dirname(f), File.basename(f, '.rb')) }
|
5
|
+
::Dir.glob(::File.expand_path('../support/**/*.rb', __FILE__)).each { |f| require File.join(File.dirname(f), File.basename(f, '.rb')) }
|
6
|
+
else
|
7
|
+
::Dir.glob(::File.expand_path('../support/*.rb', __FILE__)).each { |f| require_relative f }
|
8
|
+
::Dir.glob(::File.expand_path('../support/**/*.rb', __FILE__)).each { |f| require_relative f }
|
9
|
+
end
|
10
|
+
|
11
|
+
ENV['AWS_ACCESS_KEY_ID'] = ENV["AWS_ACCESS_KEY_ID#{ENV['TEST_ENV_NUMBER']}"]
|
12
|
+
ENV['AWS_SECRET_ACCESS_KEY'] = ENV["AWS_SECRET_ACCESS_KEY#{ENV['TEST_ENV_NUMBER']}"]
|
13
|
+
|
14
|
+
require 'awspec'
|
data/vagrant/Vagrantfile
ADDED
@@ -0,0 +1,89 @@
|
|
1
|
+
# -*- mode: ruby -*-
|
2
|
+
# vi: set ft=ruby :
|
3
|
+
|
4
|
+
# All Vagrant configuration is done below. The "2" in Vagrant.configure
|
5
|
+
# configures the configuration version (we support older styles for
|
6
|
+
# backwards compatibility). Please don't change it unless you know what
|
7
|
+
# you're doing.
|
8
|
+
Vagrant.configure('2') do |config|
|
9
|
+
# vagrant plugin install vagrant-vbgues
|
10
|
+
config.vbguest.auto_update = true
|
11
|
+
config.vbguest.no_remote = true
|
12
|
+
|
13
|
+
# Every Vagrant development environment requires a box. You can search for
|
14
|
+
# boxes at https://vagrantcloud.com/search.
|
15
|
+
config.vm.box = 'centos/7'
|
16
|
+
|
17
|
+
# Disable automatic box update checking. If you disable this, then
|
18
|
+
# boxes will only be checked for updates when the user runs
|
19
|
+
# `vagrant box outdated`. This is not recommended.
|
20
|
+
# config.vm.box_check_update = false
|
21
|
+
|
22
|
+
# Create a forwarded port mapping which allows access to a specific port
|
23
|
+
# within the machine from a port on the host machine. In the example below,
|
24
|
+
# accessing "localhost:8080" will access port 80 on the guest machine.
|
25
|
+
# NOTE: This will enable public access to the opened port
|
26
|
+
# config.vm.network "forwarded_port", guest: 80, host: 8081
|
27
|
+
|
28
|
+
# Create a forwarded port mapping which allows access to a specific port
|
29
|
+
# within the machine from a port on the host machine and only allow access
|
30
|
+
# via 127.0.0.1 to disable public access
|
31
|
+
# config.vm.network "forwarded_port", guest: 80, host: 8080, host_ip: "127.0.0.1"
|
32
|
+
|
33
|
+
# Create a private network, which allows host-only access to the machine
|
34
|
+
# using a specific IP.
|
35
|
+
# config.vm.network "private_network", ip: "192.168.33.10"
|
36
|
+
|
37
|
+
# Create a public network, which generally matched to bridged network.
|
38
|
+
# Bridged networks make the machine appear as another physical device on
|
39
|
+
# your network.
|
40
|
+
# config.vm.network "public_network"
|
41
|
+
|
42
|
+
# Share an additional folder to the guest VM. The first argument is
|
43
|
+
# the path on the host to the actual folder. The second argument is
|
44
|
+
# the path on the guest to mount the folder. And the optional third
|
45
|
+
# argument is a set of non-required options.
|
46
|
+
# config.vm.synced_folder "../data", "/vagrant_data"
|
47
|
+
config.vm.synced_folder "~/.aws", "/home/vagrant/.aws"
|
48
|
+
|
49
|
+
config.vm.provider 'virtualbox' do |vb|
|
50
|
+
vb.memory = '1024'
|
51
|
+
vb.cpus = 2
|
52
|
+
vb.customize [
|
53
|
+
'modifyvm', :id,
|
54
|
+
#'--vtxvpid', :on,
|
55
|
+
#'--hwvirtex', :on,
|
56
|
+
'--nestedpaging', :on,
|
57
|
+
'--largepages', :on,
|
58
|
+
'--ioapic', :on,
|
59
|
+
'--pae', :on,
|
60
|
+
'--paravirtprovider', :kvm
|
61
|
+
]
|
62
|
+
end
|
63
|
+
|
64
|
+
#
|
65
|
+
# View the documentation for the provider you are using for more
|
66
|
+
# information on available options.
|
67
|
+
|
68
|
+
# Enable provisioning with a shell script. Additional provisioners such as
|
69
|
+
# Puppet, Chef, Ansible, Salt, and Docker are also available. Please see the
|
70
|
+
# documentation for more information about their specific syntax and use.
|
71
|
+
# config.vm.provision "shell", inline: <<-SHELL
|
72
|
+
# apt-get update
|
73
|
+
# apt-get install -y apache2
|
74
|
+
# SHELL
|
75
|
+
|
76
|
+
config.vm.provision "shell", inline: <<-SHELL
|
77
|
+
yum clean all
|
78
|
+
yum update -y
|
79
|
+
yum -y install epel-release centos-release-scl-rh
|
80
|
+
yum -y install jq git
|
81
|
+
yum -y --enablerepo=centos-sclo-rh install rh-ruby26
|
82
|
+
ln -s /opt/rh/rh-ruby26/enable /etc/profile.d/rh-ruby26.sh
|
83
|
+
source /etc/profile.d/rh-ruby26.sh
|
84
|
+
curl "https://bootstrap.pypa.io/get-pip.py" -o "get-pip.py"
|
85
|
+
python get-pip.py
|
86
|
+
pip install awscli
|
87
|
+
gem install cfndk -V
|
88
|
+
SHELL
|
89
|
+
end
|
metadata
CHANGED
@@ -1,99 +1,225 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cfndk
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Yoshihisa AMAKATA
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2020-07-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
|
-
name:
|
14
|
+
name: rake
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- - "
|
17
|
+
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '
|
19
|
+
version: '0'
|
20
20
|
type: :development
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
|
-
- - "
|
24
|
+
- - ">="
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: '
|
26
|
+
version: '0'
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
|
-
name:
|
28
|
+
name: rspec
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ">="
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: aruba
|
29
43
|
requirement: !ruby/object:Gem::Requirement
|
30
44
|
requirements:
|
31
|
-
- - "
|
45
|
+
- - ">="
|
32
46
|
- !ruby/object:Gem::Version
|
33
|
-
version:
|
47
|
+
version: '0'
|
34
48
|
type: :development
|
35
49
|
prerelease: false
|
36
50
|
version_requirements: !ruby/object:Gem::Requirement
|
37
51
|
requirements:
|
38
|
-
- - "
|
52
|
+
- - ">="
|
39
53
|
- !ruby/object:Gem::Version
|
40
|
-
version:
|
54
|
+
version: '0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: simplecov
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - ">="
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - ">="
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '0'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: awspec
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - ">="
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '0'
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - ">="
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '0'
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: parallel_tests
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - ">="
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '0'
|
90
|
+
type: :development
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - ">="
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: '0'
|
97
|
+
- !ruby/object:Gem::Dependency
|
98
|
+
name: bundler
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - ">="
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: '0'
|
104
|
+
type: :runtime
|
105
|
+
prerelease: false
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
107
|
+
requirements:
|
108
|
+
- - ">="
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: '0'
|
111
|
+
- !ruby/object:Gem::Dependency
|
112
|
+
name: thor
|
113
|
+
requirement: !ruby/object:Gem::Requirement
|
114
|
+
requirements:
|
115
|
+
- - ">="
|
116
|
+
- !ruby/object:Gem::Version
|
117
|
+
version: '0'
|
118
|
+
type: :runtime
|
119
|
+
prerelease: false
|
120
|
+
version_requirements: !ruby/object:Gem::Requirement
|
121
|
+
requirements:
|
122
|
+
- - ">="
|
123
|
+
- !ruby/object:Gem::Version
|
124
|
+
version: '0'
|
41
125
|
- !ruby/object:Gem::Dependency
|
42
126
|
name: rainbow
|
43
127
|
requirement: !ruby/object:Gem::Requirement
|
44
128
|
requirements:
|
45
|
-
- - "
|
129
|
+
- - ">="
|
130
|
+
- !ruby/object:Gem::Version
|
131
|
+
version: '0'
|
132
|
+
type: :runtime
|
133
|
+
prerelease: false
|
134
|
+
version_requirements: !ruby/object:Gem::Requirement
|
135
|
+
requirements:
|
136
|
+
- - ">="
|
137
|
+
- !ruby/object:Gem::Version
|
138
|
+
version: '0'
|
139
|
+
- !ruby/object:Gem::Dependency
|
140
|
+
name: rubyzip
|
141
|
+
requirement: !ruby/object:Gem::Requirement
|
142
|
+
requirements:
|
143
|
+
- - '='
|
46
144
|
- !ruby/object:Gem::Version
|
47
|
-
version: 3.0
|
145
|
+
version: 1.3.0
|
48
146
|
type: :runtime
|
49
147
|
prerelease: false
|
50
148
|
version_requirements: !ruby/object:Gem::Requirement
|
51
149
|
requirements:
|
52
|
-
- -
|
150
|
+
- - '='
|
53
151
|
- !ruby/object:Gem::Version
|
54
|
-
version: 3.0
|
152
|
+
version: 1.3.0
|
55
153
|
- !ruby/object:Gem::Dependency
|
56
154
|
name: aws-sdk
|
57
155
|
requirement: !ruby/object:Gem::Requirement
|
58
156
|
requirements:
|
59
|
-
- - "
|
157
|
+
- - ">="
|
60
158
|
- !ruby/object:Gem::Version
|
61
|
-
version: '
|
159
|
+
version: '0'
|
62
160
|
type: :runtime
|
63
161
|
prerelease: false
|
64
162
|
version_requirements: !ruby/object:Gem::Requirement
|
65
163
|
requirements:
|
66
|
-
- - "
|
164
|
+
- - ">="
|
67
165
|
- !ruby/object:Gem::Version
|
68
|
-
version: '
|
166
|
+
version: '0'
|
69
167
|
- !ruby/object:Gem::Dependency
|
70
168
|
name: camelizable
|
71
169
|
requirement: !ruby/object:Gem::Requirement
|
72
170
|
requirements:
|
73
|
-
- - "
|
171
|
+
- - ">="
|
74
172
|
- !ruby/object:Gem::Version
|
75
|
-
version: 0
|
173
|
+
version: '0'
|
76
174
|
type: :runtime
|
77
175
|
prerelease: false
|
78
176
|
version_requirements: !ruby/object:Gem::Requirement
|
79
177
|
requirements:
|
80
|
-
- - "
|
178
|
+
- - ">="
|
81
179
|
- !ruby/object:Gem::Version
|
82
|
-
version: 0
|
180
|
+
version: '0'
|
83
181
|
- !ruby/object:Gem::Dependency
|
84
182
|
name: terminal-table
|
85
183
|
requirement: !ruby/object:Gem::Requirement
|
86
184
|
requirements:
|
87
|
-
- - "
|
185
|
+
- - ">="
|
186
|
+
- !ruby/object:Gem::Version
|
187
|
+
version: '0'
|
188
|
+
type: :runtime
|
189
|
+
prerelease: false
|
190
|
+
version_requirements: !ruby/object:Gem::Requirement
|
191
|
+
requirements:
|
192
|
+
- - ">="
|
193
|
+
- !ruby/object:Gem::Version
|
194
|
+
version: '0'
|
195
|
+
- !ruby/object:Gem::Dependency
|
196
|
+
name: diff-lcs
|
197
|
+
requirement: !ruby/object:Gem::Requirement
|
198
|
+
requirements:
|
199
|
+
- - ">="
|
200
|
+
- !ruby/object:Gem::Version
|
201
|
+
version: '0'
|
202
|
+
type: :runtime
|
203
|
+
prerelease: false
|
204
|
+
version_requirements: !ruby/object:Gem::Requirement
|
205
|
+
requirements:
|
206
|
+
- - ">="
|
207
|
+
- !ruby/object:Gem::Version
|
208
|
+
version: '0'
|
209
|
+
- !ruby/object:Gem::Dependency
|
210
|
+
name: polyfill
|
211
|
+
requirement: !ruby/object:Gem::Requirement
|
212
|
+
requirements:
|
213
|
+
- - ">="
|
88
214
|
- !ruby/object:Gem::Version
|
89
|
-
version: '
|
215
|
+
version: '0'
|
90
216
|
type: :runtime
|
91
217
|
prerelease: false
|
92
218
|
version_requirements: !ruby/object:Gem::Requirement
|
93
219
|
requirements:
|
94
|
-
- - "
|
220
|
+
- - ">="
|
95
221
|
- !ruby/object:Gem::Version
|
96
|
-
version: '
|
222
|
+
version: '0'
|
97
223
|
description: cfndk is AWS Cloud Formation Development Kit
|
98
224
|
email:
|
99
225
|
- amakata@gmail.com
|
@@ -102,23 +228,41 @@ executables:
|
|
102
228
|
extensions: []
|
103
229
|
extra_rdoc_files: []
|
104
230
|
files:
|
231
|
+
- ".circleci/config.yml"
|
105
232
|
- ".gitignore"
|
233
|
+
- ".rspec"
|
234
|
+
- ".rspec_parallel"
|
106
235
|
- ".rubocop.yml"
|
236
|
+
- ".simplecov"
|
107
237
|
- Gemfile
|
238
|
+
- Gemfile.lock
|
108
239
|
- LICENSE.txt
|
109
240
|
- README.md
|
110
241
|
- Rakefile
|
111
242
|
- bin/cfndk
|
112
243
|
- cfndk.gemspec
|
244
|
+
- docker/Dockerfile
|
245
|
+
- docker/build.sh
|
246
|
+
- docker/cfndk.sh
|
113
247
|
- lib/cfndk.rb
|
248
|
+
- lib/cfndk/change_set_command.rb
|
114
249
|
- lib/cfndk/command.rb
|
250
|
+
- lib/cfndk/config_file_loadable.rb
|
115
251
|
- lib/cfndk/credential_provider_chain.rb
|
252
|
+
- lib/cfndk/credential_resolvable.rb
|
253
|
+
- lib/cfndk/diff.rb
|
116
254
|
- lib/cfndk/erb_string.rb
|
255
|
+
- lib/cfndk/global_config.rb
|
117
256
|
- lib/cfndk/key_pair.rb
|
257
|
+
- lib/cfndk/key_pair_command.rb
|
118
258
|
- lib/cfndk/key_pairs.rb
|
119
259
|
- lib/cfndk/logger.rb
|
120
260
|
- lib/cfndk/stack.rb
|
261
|
+
- lib/cfndk/stack_command.rb
|
121
262
|
- lib/cfndk/stacks.rb
|
263
|
+
- lib/cfndk/subcommand_help_returnable.rb
|
264
|
+
- lib/cfndk/template_packager.rb
|
265
|
+
- lib/cfndk/uuid.rb
|
122
266
|
- lib/cfndk/version.rb
|
123
267
|
- skel/cfndk.yml
|
124
268
|
- skel/db/db.yaml
|
@@ -136,6 +280,49 @@ files:
|
|
136
280
|
- skel/sg/sg.yaml
|
137
281
|
- skel/web/prod.json
|
138
282
|
- skel/web/web.yaml
|
283
|
+
- spec/.gitignore
|
284
|
+
- spec/cfndk_change_set_create_spec.rb
|
285
|
+
- spec/cfndk_change_set_destroy_spec.rb
|
286
|
+
- spec/cfndk_change_set_execute_spec.rb
|
287
|
+
- spec/cfndk_change_set_report_spec.rb
|
288
|
+
- spec/cfndk_change_set_spec.rb
|
289
|
+
- spec/cfndk_create_spec.rb
|
290
|
+
- spec/cfndk_destroy_spec.rb
|
291
|
+
- spec/cfndk_keypiar_spec.rb
|
292
|
+
- spec/cfndk_report_spec.rb
|
293
|
+
- spec/cfndk_spec.rb
|
294
|
+
- spec/cfndk_stack_create_spec.rb
|
295
|
+
- spec/cfndk_stack_destroy_spec.rb
|
296
|
+
- spec/cfndk_stack_report_spec.rb
|
297
|
+
- spec/cfndk_stack_spec.rb
|
298
|
+
- spec/cfndk_stack_update_spec.rb
|
299
|
+
- spec/fixtures/big_vpc.yaml
|
300
|
+
- spec/fixtures/empty_resource.yaml
|
301
|
+
- spec/fixtures/iam.json
|
302
|
+
- spec/fixtures/iam.yaml
|
303
|
+
- spec/fixtures/iam_different.json
|
304
|
+
- spec/fixtures/invalid_vpc.yaml
|
305
|
+
- spec/fixtures/lambda_function/index.js
|
306
|
+
- spec/fixtures/lambda_function/lambda_function.json
|
307
|
+
- spec/fixtures/lambda_function/lambda_function.yaml
|
308
|
+
- spec/fixtures/nested_stack.json
|
309
|
+
- spec/fixtures/nested_stack.yaml
|
310
|
+
- spec/fixtures/serverless_function/index.js
|
311
|
+
- spec/fixtures/serverless_function/serverless_function.json
|
312
|
+
- spec/fixtures/serverless_function/serverless_function.yaml
|
313
|
+
- spec/fixtures/sg.json
|
314
|
+
- spec/fixtures/sg.yaml
|
315
|
+
- spec/fixtures/sg_different.yaml
|
316
|
+
- spec/fixtures/stack.json
|
317
|
+
- spec/fixtures/stack.template.json
|
318
|
+
- spec/fixtures/stack.yaml
|
319
|
+
- spec/fixtures/vpc.json
|
320
|
+
- spec/fixtures/vpc.template.json
|
321
|
+
- spec/fixtures/vpc.yaml
|
322
|
+
- spec/fixtures/vpc_different.yaml
|
323
|
+
- spec/spec_helper.rb
|
324
|
+
- spec/support/aruba.rb
|
325
|
+
- vagrant/Vagrantfile
|
139
326
|
homepage: https://github.com/Amakata/cfndk
|
140
327
|
licenses:
|
141
328
|
- http://www.apache.org/licenses/license-2.0
|
@@ -155,9 +342,50 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
155
342
|
- !ruby/object:Gem::Version
|
156
343
|
version: '0'
|
157
344
|
requirements: []
|
158
|
-
|
159
|
-
rubygems_version: 2.5.1
|
345
|
+
rubygems_version: 3.1.2
|
160
346
|
signing_key:
|
161
347
|
specification_version: 4
|
162
348
|
summary: cfndk is AWS Cloud Formation Development Kit
|
163
|
-
test_files:
|
349
|
+
test_files:
|
350
|
+
- spec/.gitignore
|
351
|
+
- spec/cfndk_change_set_create_spec.rb
|
352
|
+
- spec/cfndk_change_set_destroy_spec.rb
|
353
|
+
- spec/cfndk_change_set_execute_spec.rb
|
354
|
+
- spec/cfndk_change_set_report_spec.rb
|
355
|
+
- spec/cfndk_change_set_spec.rb
|
356
|
+
- spec/cfndk_create_spec.rb
|
357
|
+
- spec/cfndk_destroy_spec.rb
|
358
|
+
- spec/cfndk_keypiar_spec.rb
|
359
|
+
- spec/cfndk_report_spec.rb
|
360
|
+
- spec/cfndk_spec.rb
|
361
|
+
- spec/cfndk_stack_create_spec.rb
|
362
|
+
- spec/cfndk_stack_destroy_spec.rb
|
363
|
+
- spec/cfndk_stack_report_spec.rb
|
364
|
+
- spec/cfndk_stack_spec.rb
|
365
|
+
- spec/cfndk_stack_update_spec.rb
|
366
|
+
- spec/fixtures/big_vpc.yaml
|
367
|
+
- spec/fixtures/empty_resource.yaml
|
368
|
+
- spec/fixtures/iam.json
|
369
|
+
- spec/fixtures/iam.yaml
|
370
|
+
- spec/fixtures/iam_different.json
|
371
|
+
- spec/fixtures/invalid_vpc.yaml
|
372
|
+
- spec/fixtures/lambda_function/index.js
|
373
|
+
- spec/fixtures/lambda_function/lambda_function.json
|
374
|
+
- spec/fixtures/lambda_function/lambda_function.yaml
|
375
|
+
- spec/fixtures/nested_stack.json
|
376
|
+
- spec/fixtures/nested_stack.yaml
|
377
|
+
- spec/fixtures/serverless_function/index.js
|
378
|
+
- spec/fixtures/serverless_function/serverless_function.json
|
379
|
+
- spec/fixtures/serverless_function/serverless_function.yaml
|
380
|
+
- spec/fixtures/sg.json
|
381
|
+
- spec/fixtures/sg.yaml
|
382
|
+
- spec/fixtures/sg_different.yaml
|
383
|
+
- spec/fixtures/stack.json
|
384
|
+
- spec/fixtures/stack.template.json
|
385
|
+
- spec/fixtures/stack.yaml
|
386
|
+
- spec/fixtures/vpc.json
|
387
|
+
- spec/fixtures/vpc.template.json
|
388
|
+
- spec/fixtures/vpc.yaml
|
389
|
+
- spec/fixtures/vpc_different.yaml
|
390
|
+
- spec/spec_helper.rb
|
391
|
+
- spec/support/aruba.rb
|