Mercurial > repos > other > Puppet
annotate modules/mysql/tasks/export.json @ 482:d83de9b3a62b default tip
Update hiera.yaml within Puppet config
Forgot that we manage it from here. Now has content to match
new packages
author | IBBoard <dev@ibboard.co.uk> |
---|---|
date | Fri, 30 Aug 2024 16:10:36 +0100 |
parents | 48d3a1948e4d |
children |
rev | line source |
---|---|
244 | 1 { |
2 "description": "Allows you to backup your database to local file.", | |
3 "input_method": "stdin", | |
4 "parameters": { | |
5 "database": { | |
6 "description": "Database to connect to", | |
7 "type": "Optional[String[1]]" | |
8 }, | |
9 "user": { | |
10 "description": "The user", | |
11 "type": "Optional[String[1]]" | |
12 }, | |
13 "password": { | |
14 "description": "The password", | |
15 "type": "Optional[String[1]]" | |
16 }, | |
17 "file": { | |
18 "description": "Path to file you want backup to", | |
19 "type": "String[1]" | |
20 } | |
21 } | |
22 } |