cfn_manage 0.1.2 → 0.1.3
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 +4 -4
- data/lib/cf_start_stop_environment.rb +6 -0
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0f48d15f16f01693d8136bb57cdf406bfe9dca26
|
|
4
|
+
data.tar.gz: 383c8c152a7a40748991ffdc79f89006a2c336df
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3e4561f755c74c856c69054a20ce3e5850a51ce4cb78136d849e46ec7d634cf6568923bd5c943cefe4c5394840f02d195ca8e8f74e732cb5c31ccbfd0d976613
|
|
7
|
+
data.tar.gz: 0a6dddd09ac36177ee2261eba24cecb455b8d1489f370f0c205c0c9d13d59b23c7a7f22841510613eeb0a1930eadaf214b0935b4296cfa084aa2a7d6a4317784
|
|
@@ -259,6 +259,12 @@ module Base2
|
|
|
259
259
|
return
|
|
260
260
|
end
|
|
261
261
|
|
|
262
|
+
# RDS stop start does not support Aurora yet. Ignore if engine is aurora
|
|
263
|
+
if rds_instance.engine == 'aurora'
|
|
264
|
+
$log.info("RDS Instance #{instance_id} engine is aurora and cannot be stoped yet...")
|
|
265
|
+
return
|
|
266
|
+
end
|
|
267
|
+
|
|
262
268
|
configuration = {
|
|
263
269
|
is_multi_az: rds_instance.multi_az
|
|
264
270
|
}
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: cfn_manage
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Base2Services
|
|
@@ -65,7 +65,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
65
65
|
version: '0'
|
|
66
66
|
requirements: []
|
|
67
67
|
rubyforge_project:
|
|
68
|
-
rubygems_version: 2.6.
|
|
68
|
+
rubygems_version: 2.6.12
|
|
69
69
|
signing_key:
|
|
70
70
|
specification_version: 4
|
|
71
71
|
summary: Manage AWS Cloud Formation stacks
|