cfn_manage 0.3.0 → 0.3.1
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/rds_start_stop_handler.rb +5 -4
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4fa355433ba85a929315e560ceb2eb5c0d933093d7d53243bee7cb0f950ad23f
|
|
4
|
+
data.tar.gz: 055db78da9179b184cddb7f9ad127892c9a3e7ab667c8166f7ef1257d5cee9d6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 73c1c4d092f6d66c5a07da6faf71b7915f1b52d6d68cd274fc9797d7227f1f13028c94134681c4738052b5ec2f2daa3360880ff1a9aaa56914d30802e7dfc048
|
|
7
|
+
data.tar.gz: e9504f28cf57a390f450bfabd71939e38e96dfbabb7da1461cc5a2c46eac054afcb89853294413fdddfdb7bf35d0341f717a9c1dc4eff9238da5207d652b6057
|
|
@@ -46,9 +46,10 @@ module Base2
|
|
|
46
46
|
configuration = {
|
|
47
47
|
is_multi_az: @rds_instance.multi_az
|
|
48
48
|
}
|
|
49
|
-
# RDS
|
|
50
|
-
|
|
51
|
-
|
|
49
|
+
# RDS list of exluded engines that don't support RDS stop start
|
|
50
|
+
excluded_engines = %w(aurora aurora-mysql)
|
|
51
|
+
if excluded_engines.include? @rds_instance.engine
|
|
52
|
+
$log.info("RDS Instance #{@instance_id} engine is #{@rds_instance.engine} and cannot be stoped yet...")
|
|
52
53
|
return configuration
|
|
53
54
|
end
|
|
54
55
|
|
|
@@ -124,4 +125,4 @@ module Base2
|
|
|
124
125
|
|
|
125
126
|
end
|
|
126
127
|
|
|
127
|
-
end
|
|
128
|
+
end
|
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.3.
|
|
4
|
+
version: 0.3.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Base2Services
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2018-
|
|
12
|
+
date: 2018-05-07 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: aws-sdk-core
|