Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions ansible/include_vars.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,17 @@
include_vars:
file: "{{ secret_file }}"

# The file always exists, since touched in setup_output_dir.yml
# For now set the default to false, will change to true later
- name: load provision-user-data.yaml
when: >-
ACTION | default('provision') != 'provision'
and
agnosticd_load_provision_user_data | default(false)
include_vars:
file: "{{ [ output_dir, 'provision-user-data.yaml' ] | path_join }}"


- name: Set passthrough user data
when:
- agnosticd_passthrough_user_data is defined
Expand Down
Loading