idlc-sdk-deploy 1.0.21 → 1.0.22
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 +2 -3
- 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: 63db96af23a229c2c8e6885d37137a53d3636a7a6d80bf4823c2059bee42315b
|
|
4
|
+
data.tar.gz: ad5afbac0c4d356bcf6b229c646075f1cfa0188d698a34c06a5a2ca179d54dbe
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 30d3b089620634537a5911fee287d6370a833bfa2e4eb0354eeea5dae714a8a90f3c87eef536784800d3f8a45f08c2c43435de06306d06c33340bd84edcc3554
|
|
7
|
+
data.tar.gz: 546f52baebb949eb79702a6d92bf00a6d50b9cef76720495d9f5725336823a832d850694f2c33239d245e1a70c21954ee5aa64e57987c5ee6dda90892eb01277
|
|
@@ -77,7 +77,7 @@ module Idlc
|
|
|
77
77
|
|
|
78
78
|
# find db instance
|
|
79
79
|
metadata['instances'].each do |instance|
|
|
80
|
-
if instance['hostname'].start_with? 'db'
|
|
80
|
+
if (instance['hostname'].start_with? 'db' || instance['hostname'].start_with? 'rds')
|
|
81
81
|
metadata['db_instance'] = instance
|
|
82
82
|
break
|
|
83
83
|
end
|
|
@@ -138,8 +138,7 @@ module Idlc
|
|
|
138
138
|
Idlc::Utility.check_for_creds
|
|
139
139
|
|
|
140
140
|
rescue Idlc::Utility::MissingCredentials => e
|
|
141
|
-
|
|
142
|
-
exit 1
|
|
141
|
+
msg("WARN: #{e.message}\nFalling back to implicit authentication.")
|
|
143
142
|
end
|
|
144
143
|
|
|
145
144
|
def configure_state(bucket, sub_bucket, working_directory)
|
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.22
|
|
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-06-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.6
|
|
242
242
|
signing_key:
|
|
243
243
|
specification_version: 4
|
|
244
244
|
summary: IDLC SDK for AWS resources - Deploy
|