Last active
September 25, 2017 02:48
-
-
Save binford2k/c049ff6f71a4c4d1dd59860a41a0bbe5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# the format of a puppet resource | |
resource_type { 'resource title': | |
ensure => 'the state I want the resource to exist in', | |
property1 => value, | |
property2 => value, | |
property3 => value, | |
} | |
# a silly example that might go on a job listing | |
candidate { 'junior software engineer': | |
ensure => employed, | |
degree => 'BS in CptS or equivalent', | |
employment => '3+ years', | |
experience => [ 'ruby', 'rust', 'puppet', 'javascript' ], | |
certifications => [ 'RHCE', 'CCNA' ], | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment