matrix-docker-ansible-deploy/roles/matrix-awx/surveys/backup_server.json.j2

20 lines
641 B
Plaintext
Raw Normal View History

2021-03-14 06:35:38 +00:00
{
"name": "Backup Server",
2021-04-26 12:00:32 +00:00
"description": "Performs a backup of the entire service to a remote location.",
2021-03-14 06:35:38 +00:00
"spec": [
{
"question_name": "Enable Backup",
"question_description": "Set if remote backup is enabled or not. If enabled a daily backup of your server will be sent to the backup server located in {{ backup_server_location }}.",
2021-04-04 03:41:06 +00:00
"required": false,
2021-03-14 06:35:38 +00:00
"min": null,
"max": null,
"default": "{{ matrix_awx_backup_enabled | string | lower }}",
"choices": "true\nfalse",
"new_question": true,
"variable": "matrix_awx_backup_enabled",
"type": "multiplechoice"
}
]
}