Advertisement
theRoUS

Short-circuiting Hiera?

Sep 11th, 2015
353
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 0.26 KB | None | 0 0
  1. :hierarchy:
  2.  - level1
  3.   - level2
  4.   - level3
  5.  
  6. level1:
  7. ary:
  8.  - a
  9.   - b
  10.   - c
  11.  
  12. level2:
  13. ary:
  14.  - b
  15.   - c
  16.   - d
  17.  
  18. level3:
  19. ary:
  20.  - c
  21.   - d
  22.   - e
  23.  
  24. #
  25. # Any way to tell Hiera 'stop at level2' so that hiera_array('ary') => ['b','c','d','e] ?
  26. #
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement