Skip to content

Commit 4900837

Browse files
committed
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 b59f8d1 commit 4900837

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

packages/azure/manifest.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -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)