xref: /Universal-ctags/Units/parser-puppetManifest.r/node.d/input.pp (revision 5a807c8bb04aa08fcde4e2e688d355a618382887)
1/* Taken from https://docs.puppet.com/puppet/5.1/lang_node_definitions.html */
2node 'default' {}
3node 'www1.example.com' {
4  include common
5  include apache
6  include squid
7}
8
9node /^www\d+$/ {
10  include common
11}
12
13node 'www2.example.com', 'www3.example.com' {
14  include common
15  include apache, squid
16}
17