diff --git a/tests/fixtures/components/terraform/mock/main.tf b/tests/fixtures/components/terraform/mock/main.tf index bc787c0a66..236ce8896d 100644 --- a/tests/fixtures/components/terraform/mock/main.tf +++ b/tests/fixtures/components/terraform/mock/main.tf @@ -1,29 +1,3 @@ -terraform { - required_providers { - local = { - source = "hashicorp/local" - version = ">= 2.0.0" - } - } -} - -variable "environment" { - type = string -} - -variable "stage" { - type = string -} - -variable "tenant" { - type = string -} - -resource "local_file" "test" { - content = "test-${var.environment}" - filename = "./test.txt" -} - variable "foo" { type = string default = "foo"