From 8b12225e07c058d5212c37cdeca51aba3cc860cf Mon Sep 17 00:00:00 2001 From: phaer Date: Sun, 23 Jan 2022 14:31:27 +0100 Subject: [PATCH] remove empty provider blocks terraform v1.1.4 (and at least v1.0.11) emits a warning for empty provider blocks. Removing those still seems to work while avoiding that warning. --- providers.tf | 4 ---- 1 file changed, 4 deletions(-) diff --git a/providers.tf b/providers.tf index dcb6222..706ed68 100644 --- a/providers.tf +++ b/providers.tf @@ -1,7 +1,3 @@ -provider "github" {} - provider "hcloud" { token = var.hcloud_token } - -provider "local" {}