deploy_customer_configuration.yml 615 Bytes
---
- hosts: dhipaya
  become: true
  vars:
        dmapublishURL: 'publishUrl = https://tipeasy.dhipaya.co.th'
  tasks:
      - name:  Update DMA publish URL
        command: cat '{{ dmapublishURL }}' > /opt/stack/dma/conf/dmaconfig.properties
    
- hosts: blueprint
  become: true
  vars:
        dmapublishURL: 'publishUrl = https://bpchat.beebuddy.net'
  tasks:
      - file:
            path: /opt/stack/dma/conf/dmaconfig.properties
            state: touch
            mode: 0644
      - name:  Update DMA publish URL
      - copy: content="{{ dmapublishURL }}" dest=/opt/stack/dma/conf/dmaconfig.properties