docker_compose(role): move argument documentation to README
Do this to match newer roles and since reading documentation from argument_specs is quite unergonomic.
This commit is contained in:
parent
e390b7c202
commit
9f8d2d89cd
2 changed files with 8 additions and 12 deletions
|
|
@ -2,31 +2,20 @@ argument_specs:
|
|||
main:
|
||||
options:
|
||||
docker_compose__compose_file_content:
|
||||
description: >-
|
||||
The content of the Compose file at
|
||||
`/ansible_docker_compose/compose.yaml`.
|
||||
type: str
|
||||
required: true
|
||||
docker_compose__env_file_content:
|
||||
description: >-
|
||||
The content of the .env file at
|
||||
`/ansible_docker_compose/.env`.
|
||||
type: str
|
||||
required: false
|
||||
docker_compose__configuration_files:
|
||||
description: >-
|
||||
A list of configuration files to be deployed in the
|
||||
`/ansible_docker_compose/configs/` directory.
|
||||
type: list
|
||||
elements: dict
|
||||
required: false
|
||||
default: [ ]
|
||||
options:
|
||||
name:
|
||||
description: The name of the configuration file.
|
||||
type: str
|
||||
required: true
|
||||
content:
|
||||
description: The content of the configuration file.
|
||||
type: str
|
||||
required: true
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue