lots of stuff
This commit is contained in:
Vendored
+35
@@ -10,6 +10,36 @@
|
||||
"command": "ansible-vault encrypt_string ${input:pw} --name ${input:name} --vault-password-file .vault-password",
|
||||
"problemMatcher": []
|
||||
},
|
||||
{
|
||||
"label": "Show vault secrets in current file",
|
||||
"type": "shell",
|
||||
"options": {
|
||||
"cwd": "${workspaceFolder}"
|
||||
},
|
||||
"command": "python3 vaultShow.py ${relativeFile}",
|
||||
"presentation": {
|
||||
"reveal": "always",
|
||||
"panel": "dedicated",
|
||||
"echo": false,
|
||||
"clear": true
|
||||
},
|
||||
"problemMatcher": []
|
||||
},
|
||||
{
|
||||
"label": "Show one vault secret in current file",
|
||||
"type": "shell",
|
||||
"options": {
|
||||
"cwd": "${workspaceFolder}"
|
||||
},
|
||||
"command": "python3 vaultShow.py ${relativeFile} ${input:varName}",
|
||||
"presentation": {
|
||||
"reveal": "always",
|
||||
"panel": "dedicated",
|
||||
"echo": false,
|
||||
"clear": true
|
||||
},
|
||||
"problemMatcher": []
|
||||
},
|
||||
{
|
||||
"label": "Deploy: nginx",
|
||||
"type": "shell",
|
||||
@@ -234,6 +264,11 @@
|
||||
"id": "name",
|
||||
"type": "promptString",
|
||||
"description": "Name for the string"
|
||||
},
|
||||
{
|
||||
"id": "varName",
|
||||
"type": "promptString",
|
||||
"description": "Variable name to decrypt"
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user