如何使用Ansible Playbook在python中运行Ansible Module

时间:2019-12-04 08:04:18

标签: python module ansible ansible-awx

我必须在python中开发一个ansible模块来管理fail2ban的配置,但是当我运行剧本时我无法运行它

剧本代码:

Description

模块代码:

   - name: "test code"
  hosts: 10.7.150.113
  tasks:
  - name: "test"
      fail2ban_SSH_configurator:
        bantime: 10

python代码远未结束,我只是想对其进行进一步的测试。

但是我不知道如何运行我的模块,当我尝试给我的剧本吃午餐时,我遇到了这个错误:enter image description here

1 个答案:

答案 0 :(得分:0)

fail2ban似乎缩进得太多了。 该错误抱怨出现Yaml无关紧要问题。

“ fail2ban”和“名称”应该对齐。

希望这会有所帮助。