activerecord_aad 0.2.1 → 0.3.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/activerecord_aad.gemspec +1 -1
- data/lib/activerecord_aad.rb +9 -11
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 46c5ca1c2164940d279cb8385452c3001190c281f07319458c83ecb04ce28066
|
4
|
+
data.tar.gz: b5a844c77d30b17a00cd62baffb0f4538a124b667f2d36e52699afff60ae6e32
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9ee266dbfbfd11c8717e6ab3d6c1f8eeabd24d610b8d810be69c9dad6b044d30ba6da238e8ef99bb35165e50ed7d53c5ada2f2fb97274bb935c06ac3184e39ac
|
7
|
+
data.tar.gz: 2618f415adb4b784faf3129a563518253e21132e93cef7380f497557f9da3d00b517483930d47e12a0224e998ffe638009857309096622d970162bb3e8f3e68f
|
data/activerecord_aad.gemspec
CHANGED
@@ -4,7 +4,7 @@ $LOAD_PATH << File.join(File.dirname(__FILE__), 'lib')
|
|
4
4
|
|
5
5
|
Gem::Specification.new do |s|
|
6
6
|
s.name = 'activerecord_aad'
|
7
|
-
s.version = '0.
|
7
|
+
s.version = '0.3.0'
|
8
8
|
s.authors = ['Taylor Yelverton']
|
9
9
|
s.email = 'rubygems@yelvert.io'
|
10
10
|
s.homepage = 'https://github.com/ComplyMD/activerecord_aad'
|
data/lib/activerecord_aad.rb
CHANGED
@@ -9,10 +9,10 @@ module Azure
|
|
9
9
|
def configuration_hash
|
10
10
|
hash = super.dup.with_indifferent_access
|
11
11
|
if hash[:azure_managed_identity].present?
|
12
|
-
@managed_identity_manager ||= ManagedIdentityManager.new(hash)
|
13
|
-
@managed_identity_manager.apply
|
12
|
+
@managed_identity_manager ||= ManagedIdentityManager.new(hash[:azure_managed_identity])
|
13
|
+
@managed_identity_manager.apply hash
|
14
14
|
end
|
15
|
-
hash.
|
15
|
+
hash.freeze
|
16
16
|
hash
|
17
17
|
end
|
18
18
|
|
@@ -21,17 +21,15 @@ module Azure
|
|
21
21
|
class ManagedIdentityManager
|
22
22
|
URL = 'http://169.254.169.254/metadata/identity/oauth2/token?api-version=2018-02-01&resource=https%3A%2F%2Fossrdbms-aad.database.windows.net'
|
23
23
|
|
24
|
-
attr_reader :
|
24
|
+
attr_reader :client_id, :url
|
25
25
|
|
26
|
-
def initialize(
|
27
|
-
|
28
|
-
@config = conf
|
29
|
-
@client_id = config[:azure_managed_identity]
|
26
|
+
def initialize(cid)
|
27
|
+
@client_id = cid
|
30
28
|
@url = URL
|
31
|
-
@url += "&client_id=#{@client_id}"
|
29
|
+
@url += "&client_id=#{@client_id}"
|
32
30
|
end
|
33
31
|
|
34
|
-
def apply
|
32
|
+
def apply(config)
|
35
33
|
config[:password] = access_token
|
36
34
|
config[:enable_cleartext_plugin] = true if config[:adapter] == 'mysql2'
|
37
35
|
end
|
@@ -55,4 +53,4 @@ module Azure
|
|
55
53
|
|
56
54
|
end
|
57
55
|
end
|
58
|
-
end
|
56
|
+
end
|