diff --git a/tests/main.tf b/tests/main.tf index fe77392072d698f925891fe1181aa494e2478a76..eecb2da09ab5874258b3ea0a3d4fad1aef770a36 100644 --- a/tests/main.tf +++ b/tests/main.tf @@ -1,3 +1,10 @@ terraform { backend "http" { } -} \ No newline at end of file +} + +resource "local_file" "foo" { + filename = "${path.module}/foo.bar" + content = "bar!" + directory_permission = "0755" + file_permission = "0755" +}