From da0407141e28793f72c13ff4c30fb6f2b05a5ccc Mon Sep 17 00:00:00 2001 From: Matt Kasa <mkasa@gitlab.com> Date: Thu, 28 Jan 2021 02:32:57 +0000 Subject: [PATCH] ci: Add local_file resource to test fixture --- tests/main.tf | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/tests/main.tf b/tests/main.tf index fe77392..eecb2da 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" +} -- GitLab