Ansible is a tool to deploy and manage devops.
Example of a playbook for windows
---
- name: Install Apache from an MSI
hosts: all
tasks:
- name: Download the Apache installer
win_get_url:
url: 'http://mirror.cc.columbia.edu/pub/software/apache//httpd/binaries/win32/httpd-2.2.25-win32-x86-no_ssl.msi'
dest: 'C:\Users\Administrator\Downloads\httpd-2.2.25-win32-x86-no_ssl.msi'
- name: Install MSI
win_msi:
path: 'C:\Users\Administrator\Downloads\httpd-2.2.25-win32-x86-no_ssl.msi'
state: present