Skip to content

Commit

Permalink
Add token as secret type choice for Delinea/Thycotic (#50)
Browse files Browse the repository at this point in the history
* add token as secret type choice

* blacken
  • Loading branch information
scetron committed Apr 19, 2023
1 parent cd70bf6 commit e417909
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions nautobot_secrets_providers/providers/choices.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,14 @@
class ThycoticSecretChoices(ChoiceSet):
"""Choices for Thycotic Secret Server Result."""

SECRET_TOKEN = "token" # nosec
SECRET_PASSWORD = "password" # nosec
SECRET_USERNAME = "username" # nosec
SECRET_URL = "url" # nosec
SECRET_NOTES = "notes" # nosec

CHOICES = (
(SECRET_TOKEN, "Token"),
(SECRET_PASSWORD, "Password"),
(SECRET_USERNAME, "Username"),
(SECRET_URL, "URL"),
Expand Down

0 comments on commit e417909

Please sign in to comment.