infrastructure/roles/minecraft_blockmap/templates/blockmap.json
saibotk a47fde9c9c
Rename roles to underscore
This patch renames all roles with a `-` to `_`, to comply with the ansible-lint rule 106. As collection roles are now also limited to these symbols and this will make it easier to move them later.
2020-09-26 18:12:59 +02:00

34 lines
939 B
JSON

{
"output dir": "/output",
"server": {
"server name": "{{ blockmap_config_server.name }}",
"server description": "{{ blockmap_config_server.description }}",
"server address": "{{ blockmap_config_server.address }}",
"max players": {{ blockmap_config_server.max_players }}
},
"worlds": [
{
"name": "Overworld",
"input dir": "/input",
"dimension": "OVERWORLD",
"force": false
},
{
"name": "Nether",
"input dir": "/input",
"dimension": "NETHER",
"render settings": {
"block colors": "CAVES",
"shader": "RELIEF",
"maxY": "80"
},
"force": false
},
{
"name": "End",
"input dir": "/input",
"dimension": "END",
"force": false
}
]
}