Matrix Docker Ansible eploy
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 

12 行
293 B

  1. ---
  2. - name: Create a AWX session token for executing modules
  3. awx.awx.tower_token:
  4. description: 'AWX Session Token'
  5. scope: "write"
  6. state: present
  7. tower_host: "https://{{ awx_host }}"
  8. tower_oauthtoken: "{{ awx_master_token }}"
  9. register: awx_session_token
  10. no_log: true