feat(ansible): allow for input variable files to configure forge behavior (#13)

This commit is contained in:
Stephan Lüscher 2024-05-03 14:21:06 +00:00
parent 7ae5826f4a
commit cb4d82c7cf
No known key found for this signature in database
GPG key ID: 445779060FF3D3CF
9 changed files with 60 additions and 14 deletions

View file

@ -0,0 +1,5 @@
---
# git variables
forge_git_repository_url: "{{ lookup('ansible.builtin.env', 'FORGE_GIT_REPOSITORY_URL', default='https://github.com/ublue-os/bluefin.git') }}"
forge_git_repository_destination: "{{ lookup('ansible.builtin.env', 'FORGE_GIT_REPOSITORY_DESTINATION', default=forge_data_path + '/bluefin') }}"
forge_git_repository_version: "{{ lookup('ansible.builtin.env', 'FORGE_GIT_REPOSITORY_VERSION', default='main') }}"