Open shihanng opened 1 year ago
The following configuration should create file ~/foo.bar with test as content.
~/foo.bar
test
resource "local_file" "foo" { cmd = "echo 'test'" filename = "~/foo.bar" }
It should handle expanding $HOME and ~.
$HOME
~
The following configuration should create file
~/foo.bar
withtest
as content.It should handle expanding
$HOME
and~
.