idlc-sdk-deploy 1.0.23 → 1.0.24
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/idlc-sdk-deploy/config.rb +5 -2
- data/lib/idlc-sdk-deploy/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 06b0994c23fec124a7873d269bb6bd60c37c91a33e7d97941ed44e8c86a469b8
|
|
4
|
+
data.tar.gz: 935f9d872ab509e8b1c423328f159f5fba6f054ae3f4e57ce3b8a80e79647434
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 54a01862c3863fccb8a39eefafa54c4ad8c67a41060dc4a7ad6f872b1d058bdf6c1331ea7154efaccf32139472a55cd8494a804e69909ad63485124b0b5003a5
|
|
7
|
+
data.tar.gz: 0a606602c1202d30b84c535aef988178c1cead6f4328858e8bb8ad62b546c80f3aa5389fcc738b84bdc93f75f5e8b2f353bf5515bf9ecbb19d44db6f1e36d1d2
|
|
@@ -75,11 +75,14 @@ module Idlc
|
|
|
75
75
|
|
|
76
76
|
metadata['application'] = application['applications'].first
|
|
77
77
|
|
|
78
|
-
# find db instance
|
|
78
|
+
# find db and fs instance
|
|
79
79
|
metadata['instances'].each do |instance|
|
|
80
80
|
if (instance['hostname'].start_with?('db') || instance['hostname'].start_with?('rds'))
|
|
81
81
|
metadata['db_instance'] = instance
|
|
82
|
-
|
|
82
|
+
end
|
|
83
|
+
|
|
84
|
+
if (instance['hostname'].start_with?('fs'))
|
|
85
|
+
metadata['fs_instance'] = instance
|
|
83
86
|
end
|
|
84
87
|
end
|
|
85
88
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: idlc-sdk-deploy
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.24
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Nathan Cazell
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-
|
|
11
|
+
date: 2018-09-11 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -238,7 +238,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
238
238
|
version: '0'
|
|
239
239
|
requirements: []
|
|
240
240
|
rubyforge_project:
|
|
241
|
-
rubygems_version: 2.7.
|
|
241
|
+
rubygems_version: 2.7.7
|
|
242
242
|
signing_key:
|
|
243
243
|
specification_version: 4
|
|
244
244
|
summary: IDLC SDK for AWS resources - Deploy
|