lots of stuff

This commit is contained in:
bee
2026-08-16 14:48:04 +02:00
parent c63db540e8
commit 49fa352476
45 changed files with 32520 additions and 93 deletions
+35
View File
@@ -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"
}
]
}