I'm looking for the syntax to copy an entire templates directory inside a puppet module. (Eg: templates/webconfig/file1.erb, templates/webconfig/config/file2.erb)
I tried to copy in below syntax:
file {"$http_home_dir/webconfig":
ensure => "directory",
owner => "$http_user",
group => "$http_group",
content => template("webconfig"),
recurse => true,
require => File["$http_home_dir"];
}
It doesn't worked. When i tried to use wildcard like below also, it didn't worked.
content => template("webconfig/*.erb"),
Is there anything specific I'm missing