restic-scheduler/config.hcl

31 lines
393 B
HCL
Raw Normal View History

2022-02-20 06:09:23 +00:00
job "My App" {
schedule = "* * * * *"
config {
repo = "s3://..."
passphrase = "foo"
}
task "Dump mysql" {
mysql {
hostname = "foo"
username = "bar"
}
}
task "Create biz file" {
on_backup {
body = <<EOF
echo foo > /biz.txt
EOF
}
}
task "Backup data files" {
files = [
"/foo/bar",
"/biz.txt",
]
}
}