Introduce collectionid filter for bitwarden parameters (#454)

This commit is contained in:
Kerem Yilmaz
2024-06-10 22:06:58 -07:00
committed by GitHub
parent bb19a8ab8e
commit 0ede4fdfa0
9 changed files with 56 additions and 10 deletions

View File

@@ -52,6 +52,9 @@ class BitwardenLoginCredentialParameter(Parameter):
bitwarden_master_password_aws_secret_key: str
# url to request the login credentials from bitwarden
url_parameter_key: str
# bitwarden collection id to filter the login credentials from,
# if not provided, no filtering will be done
bitwarden_collection_id: str | None = None
created_at: datetime
modified_at: datetime

View File

@@ -36,6 +36,9 @@ class BitwardenLoginCredentialParameterYAML(ParameterYAML):
bitwarden_master_password_aws_secret_key: str
# parameter key for the url to request the login credentials from bitwarden
url_parameter_key: str
# bitwarden collection id to filter the login credentials from,
# if not provided, no filtering will be done
bitwarden_collection_id: str | None = None
class WorkflowParameterYAML(ParameterYAML):