Skip to content

Commit 7df51d8

Browse files
authored
Azure Logs: set field type to password on secret fields (#9159)
* Set field type to password on secret fields The `connection_string` and `storage_account_key` have been marked as `secret` in a previous PR, but I did not update the field type as password. AFAIK leaving the type as text does not have side effects, but I I should align the field type with the semantics.
1 parent 87e6e91 commit 7df51d8

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

packages/azure/changelog.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
- version: "1.9.1"
2+
changes:
3+
- description: Set field type to password on secret fields
4+
type: bugfix
5+
link: https://github.com/elastic/integrations/pull/9159
16
- version: "1.9.0"
27
changes:
38
- description: Add support for integration secrets

packages/azure/manifest.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: azure
22
title: Azure Logs
3-
version: 1.9.0
3+
version: 1.9.1
44
description: This Elastic integration collects logs from Azure
55
type: integration
66
icons:
@@ -39,7 +39,7 @@ vars:
3939
show_user: true
4040
default: $Default
4141
- name: connection_string
42-
type: text
42+
type: password
4343
secret: true
4444
title: Connection String
4545
multi: false
@@ -56,7 +56,7 @@ vars:
5656
description: >-
5757
The name of the storage account where the consumer group's state/offsets will be stored and updated.
5858
- name: storage_account_key
59-
type: text
59+
type: password
6060
secret: true
6161
title: Storage Account Key
6262
multi: false

0 commit comments

Comments
 (0)