databricks-cli
databricks-cli copied to clipboard
iterate in dbutils.secrets.get
It is possible to iterate over the return of dbutils.secrets.get and have the key value. Would that be correct?
value = dbutils.secrets.get(scope, key)
for i in range (0, len(value)) :
print(key[i])