美文网首页
ansible 生成随机数

ansible 生成随机数

作者: _fishman | 来源:发表于2020-04-13 09:33 被阅读0次
    - hosts: all
      user: app
      become: yes
      gather_facts: no
      tasks:
    
        - name: 生成随机数ID
          set_fact:
            randome_number: "{{ 1000 | random | to_uuid | lower }}"
        - debug: var=randome_number
    
    

    相关文章

      网友评论

          本文标题:ansible 生成随机数

          本文链接:https://www.haomeiwen.com/subject/ipwwmhtx.html