-
SummaryIs there a way I could disable the schema validation for all of my playbooks? I couldn't find it in the YAML or Ansible module's settings. I've been having a problem with vscode-YAML's validation scheme after some update. Relevant informationI have a simple playbook in which I use import_tasks to run other playbooks. - name: Linux tasks
block:
- name: tasks1
import_tasks: tasks1.yml
- name: tasks2
import_tasks: tasks2.yml
when: ansible_system == "Linux" Because of the YAML schema validation every single task in
|
Beta Was this translation helpful? Give feedback.
Answered by
gorkem
Mar 30, 2022
Replies: 1 comment 1 reply
-
Use |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
0x412e4e
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Use
yaml.validate
setting as described on the README