Skip to content

Instantly share code, notes, and snippets.

@JakeDEvans
Last active February 24, 2016 17:10
Show Gist options
  • Save JakeDEvans/ed13514e6d3614c3381a to your computer and use it in GitHub Desktop.
Save JakeDEvans/ed13514e6d3614c3381a to your computer and use it in GitHub Desktop.
ansible var array override
program:
name: defaultname
option1: default
option2: default
option3: default
program:
name: groupname
option2: group
---
- hosts: hostgroup
vars:
program:
name: customname
option1: customoption
#Expected Results#
program:
name: customname
option1: customoption
option2: group
option3: default
#Actual Results#
program:
name: customname
option1: customoption
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment