Files
ansible-hpa-playbook/roles/setup-project/defaults/main.yml

30 lines
757 B
YAML

---
# TODO: When using a template repo, we should probably clone it into
# the project directory somewhere.
# template_dir:
# path: "/path/to/template/dir
# vars: "repo_vars"
# repo: (optional if using a repo as a template)
template:
#path: "/path/to/template/dir"
#vars: "repo_vars"
# When using a repository as a template dir. In general, it's
# probably best to pin to a particular version of the repo template
# instead of a branch.
#
# repo:
# url: "https://example.com/repo.git"
# version: "main"
#repo: {}
# The preject directory to setup in.
project_dir: "{{ lookup('env', 'PWD') }}"
# Files that are copied from the template directory to the output
# directory.
copy_on_setup:
- "Report.md"
- "vars.yml"