Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/npwalker/array_and_hash_examples
https://github.com/npwalker/array_and_hash_examples
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/npwalker/array_and_hash_examples
- Owner: npwalker
- Created: 2015-11-10T17:36:00.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2015-11-10T17:36:16.000Z (about 9 years ago)
- Last Synced: 2024-05-08T22:04:13.033Z (8 months ago)
- Language: Puppet
- Size: 0 Bytes
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
An example hiera file for `array_and_hash_examples::hiera_examples`
```
array_and_hash_examples::hiera_examples::array:
- '1'
- 'two'
- '3'
- 'four'
array_and_hash_examples::hiera_examples::hash:
'one': '1'
'two': '2'
array_and_hash_examples::hiera_examples::array_of_hashes:
- 'hash1_key1': 'hash1_val_one'
'hash1_key2': 'hash1_val_two'
- 'hash2_key1': 'hash2_val_one'
'hash2_key2': 'hash2_val_two'
array_and_hash_examples::hiera_examples::hash_of_hashes:
'hash1':
'inner_hash1_key1': '1'
'hash2':
'inner_hash2_key1': '2'
```