domain.modify.yml 771 Bytes
---

- hosts: localhost

  vars_prompt:
    - name: "confirmation"
      prompt: "Modify DNS record . Please Enter YES to continue."
      private: no

  vars_files:
    - extra_vars/all.yml

  vars:
    qcloud_key: "{{ lookup('hashi_vault',  'secret=yoho/ops/qcloud token='+'{{vault.token}}'+' url='+'{{vault.server}}') }}"

  tasks: 
    - name: "make sure user type YES to confirm"
      fail:
        msg: "user do not type YES"
      when: confirmation != 'YES'

    - name: 修改域名映射的IP或CNAME
      domain_modify:
        secretId: "{{ qcloud_key.SecretId }}"
        secretKey: "{{ qcloud_key.SecretKey }}"
        domain_name: "www.yohotest.xyz" 
        #value: "java-public-lb-862332839.cn-north-1.elb.amazonaws.com.cn"
        value: '1.11.11.22'