From 0ad73f1d10a1cabe0472d4a7c57a81732986c2d5 Mon Sep 17 00:00:00 2001 From: Kerim Satirli Date: Fri, 14 Jun 2024 14:03:28 +0200 Subject: [PATCH] linting --- examples/branch_protection/terraform.tf | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 examples/branch_protection/terraform.tf diff --git a/examples/branch_protection/terraform.tf b/examples/branch_protection/terraform.tf new file mode 100644 index 0000000..29acf47 --- /dev/null +++ b/examples/branch_protection/terraform.tf @@ -0,0 +1,13 @@ +terraform { + # see https://www.terraform.io/docs/language/settings/index.html#specifying-provider-requirements + required_providers { + # see https://registry.terraform.io/providers/integrations/github/6.2.1 + github = { + source = "integrations/github" + version = ">= 6.2.1, < 7.0.0" + } + } + + # see https://www.terraform.io/docs/language/settings/index.html#specifying-a-required-terraform-version + required_version = ">= 1.3.0" +}