Updates
All checks were successful
Ansible Code Pipeline / Ansible-Development-Pipeline (ansible-dev-centos9) (push) Successful in 12s

This commit is contained in:
Chris Hammer 2024-12-20 17:26:24 -05:00
parent c8a3840f84
commit 700ab63be0
2 changed files with 8 additions and 8 deletions

View File

@ -10,7 +10,7 @@ jobs:
Ansible-Development-Pipeline: Ansible-Development-Pipeline:
strategy: strategy:
matrix: matrix:
os: [ ansible-dev-centos9, ansible-dev-fedora39, ansible-dev-debian12 ] os: [ ansible-dev-centos9 ]
runs-on: ${{ matrix.os }} runs-on: ${{ matrix.os }}
steps: steps:
- name: Clone repository - name: Clone repository

View File

@ -7,28 +7,28 @@
tasks: tasks:
- name: Example of 'Text' - name: Example of 'Text'
ansible.builtin.debug: ansible.builtin.debug:
msg: aap_survey_text var: aap_survey_text
- name: Example of 'Textarea' - name: Example of 'Textarea'
ansible.builtin.debug: ansible.builtin.debug:
msg: aap_survey_textarea var: aap_survey_textarea
- name: Example of 'password' - name: Example of 'password'
ansible.builtin.debug: ansible.builtin.debug:
msg: aap_survey_password var: aap_survey_password
- name: Example of 'Multiple Choice (single select)' - name: Example of 'Multiple Choice (single select)'
ansible.builtin.debug: ansible.builtin.debug:
msg: aap_survey_choice_single var: aap_survey_choice_single
- name: Example of 'Multiple Choice (multiple select)' - name: Example of 'Multiple Choice (multiple select)'
ansible.builtin.debug: ansible.builtin.debug:
msg: aap_survey_choice_multiple var: aap_survey_choice_multiple
- name: Example of 'Integer' - name: Example of 'Integer'
ansible.builtin.debug: ansible.builtin.debug:
msg: aap_survey_integer var: aap_survey_integer
- name: Example of 'Float' - name: Example of 'Float'
ansible.builtin.debug: ansible.builtin.debug:
msg: aap_survey_float var: aap_survey_float