Skip to content

Commit

Permalink
Fix overly permissive regex
Browse files Browse the repository at this point in the history
  • Loading branch information
jmcrawford45 committed Oct 3, 2023
1 parent b6b53cb commit a3863b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lemur/plugins/lemur_azure_dest/plugin.py
Expand Up @@ -122,7 +122,7 @@ class AzureDestinationPlugin(DestinationPlugin):
"name": "azurePassword",
"type": "str",
"required": True,
"validation": check_validation("[0-9a-zA-Z.:_-~]+"),
"validation": check_validation("[0-9a-zA-Z.:_~-]+"),
"helpMessage": "Tenant password for the Azure Key Vault",
}
]
Expand Down

0 comments on commit a3863b7

Please sign in to comment.