fluent-plugin-azurestorage-gen2 0.1.3 → 0.1.4
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/README.md +2 -2
- data/VERSION +1 -1
- data/lib/fluent/plugin/out_azurestorage_gen2.rb +1 -0
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 13b891a2c06d9a6a18d088c8cf02eb781d3538eb
|
4
|
+
data.tar.gz: cc89a73ec41eed32b5a7f3a4d104c3ac80422642
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: da9ade031001af9fea91952af3da3fea6fa32dac029b4b2ae84cb9ac92c2b68e2fd7f9232380ec38fd96990ad53b07d9a16ec11699c12ed4b3e2978a72c03364
|
7
|
+
data.tar.gz: 76d5f0f943d2647b388852d4c4d274c0af6c8cfae9b3440afaed6b5cb4db240106efe106e974cb8ad744fe7f3ecb4deee143271e42ef67f2f9db184427b96143
|
data/README.md
CHANGED
@@ -89,7 +89,7 @@ Your Azure Storage Access Key(Primary or Secondary). This also can be got from A
|
|
89
89
|
|
90
90
|
Your Azure Managed Service Identity ID. When storage key authentication is not used, the plugin uses OAuth2 to authenticate as given MSI. This authentication method only works on Azure VM. If the VM has only one MSI assigned, this parameter becomes optional and the only MSI will be used. Otherwise this parameter is required.
|
91
91
|
|
92
|
-
### azure_oauth_tenant_id
|
92
|
+
### azure_oauth_tenant_id (Preview)
|
93
93
|
|
94
94
|
Azure account tenant id from your Azure Directory. Required if OAuth based credential mechanism is used.
|
95
95
|
|
@@ -101,7 +101,7 @@ OAuth client id that is used for OAuth based authentication. Required if OAuth b
|
|
101
101
|
|
102
102
|
OAuth client secret that is used for OAuth based authentication. Required if OAuth based credential mechanism is used.
|
103
103
|
|
104
|
-
### azure_oauth_refresh_interval
|
104
|
+
### azure_oauth_refresh_interval
|
105
105
|
|
106
106
|
OAuth2 access token refreshment interval in second. Only applies when MSI / OAuth authentication is used.
|
107
107
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.1.
|
1
|
+
0.1.4
|
@@ -260,6 +260,7 @@ module Fluent::Plugin
|
|
260
260
|
access_token=`az account get-access-token --resource https://storage.azure.com/ --query accessToken -o tsv`
|
261
261
|
log.debug "azurestorage_gen2: Token response: #{access_token}"
|
262
262
|
@azure_access_token = access_token
|
263
|
+
end
|
263
264
|
|
264
265
|
private
|
265
266
|
def ensure_container
|