#!/usr/bin/env ansible-playbook -i hosts

---
- hosts: TODO
  gather_facts: false
  become: yes
  become_user: root

  tasks:
    - name: 'copy config'
      action: >
        copy
        src=files/install_prod_nginx_upstream_section/upstream.conf
        dest=/etc/nginx/conf.d/upstream.conf
        mode=0644
