vault_decrypt_string
Decrypt strings encrypted with Ansible Vault by providing the string, vault ID, and password file. Simplifies secure data handling in Ansible workflows.
Instructions
Decrypt a string encrypted with Ansible Vault
Input Schema
Name | Required | Description | Default |
---|---|---|---|
string | Yes | ||
vault_id | No | ||
vault_password_file | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"string": {
"minLength": 1,
"type": "string"
},
"vault_id": {
"type": "string"
},
"vault_password_file": {
"type": "string"
}
},
"required": [
"string"
],
"type": "object"
}