agent: |
yGklZ0H6ppRJX6sQCJ20Adding, Deleting, Listing DagKnows Proxy credentials or key-value pairs
- 1P5YCRyqUiO7lb43Hz8fsList credentials
1
There was a problem that the LLM was not able to address. Please rephrase your prompt and try again.1 - 2srJlS29fQ7B1FHkKUU3oAdd credentials
2
There was a problem that the LLM was not able to address. Please rephrase your prompt and try again.Using this task you can add credentials to the vault
Inputs:
- cred_label : Give a label to the credentials so that you can reference it in your code. No special characters.
- type: specify type of credentials [ssh, winrm, jwt, basicauth]
- username: some username with the credentials
- password: This should be password for ssh, winrm, basicauth or API token for basicauth or jwt
- proxyrole: The proxy role that has access to these credentials
inputsoutputscmd = f"dkv credentials add {cred_label} --role {proxyrole} --conn-type {cred_type} --username {username} --password {password}" op = _exe(None, cmd) print(op)copied2 - 3iDZIJDEeM2Vt7TDBziIzDelete credentials
3
There was a problem that the LLM was not able to address. Please rephrase your prompt and try again.3 - 4FvK7NNqeTF1yms3cDPASView credentials
4
There was a problem that the LLM was not able to address. Please rephrase your prompt and try again.4 - 5WSOIK3ETlRQ9U2jahAFSList keys of the key-value pairs
5
List keys of the key-value pairs
There was a problem that the LLM was not able to address. Please rephrase your prompt and try again.5 - 6IDTFx8oHQE07dayYUOdwAdd a key-value pair
6
There was a problem that the LLM was not able to address. Please rephrase your prompt and try again.6 - 7AhxNgxlQPkB7K4h87drBGet the value of a key
7
There was a problem that the LLM was not able to address. Please rephrase your prompt and try again.7 - 8fxkrtlncv7NKxkmfNssiList the IP addresses
8
There was a problem that the LLM was not able to address. Please rephrase your prompt and try again.8 - 9cmpoJCbNvL12NGzQlulmAdd an IP address along with default credential label
9
Add an IP address along with default credential label
There was a problem that the LLM was not able to address. Please rephrase your prompt and try again.9 - 10zvsXf471Szbx0MoERfL7Add ssh-key credentials
10
There was a problem that the LLM was not able to address. Please rephrase your prompt and try again.Using this task you can add credentials to the vault
Inputs:
- cred_label : Give a label to the credentials so that you can reference it in your code. No special characters.
- type: specify type of credentials [ssh, winrm, jwt, basicauth]
- username: some username with the credentials
- ssh-key-file: This should be the name of the ssh key file to be added. This needs to be saved in the folder /usr/src/app/src/keys/ on the cmd-exec container.
- proxyrole: The proxy role that has access to these credentials
inputsoutputscmd = f"dkv credentials add {cred_label} --role {proxyrole} --conn-type {cred_type} --username {username} --ssh-key-file {ssh_key_file_name}" op = _exe(None, cmd) print(op)copied10