deploy_customer_configuration.yml
634 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
command: "cat 'publishUrl = https://bpchat.beebuddy.net' > /opt/stack/dma/conf/dmaconfig.properties"