From 62784aa33b6c23d5ea2d529e9d7b33e9102272df Mon Sep 17 00:00:00 2001 From: Manan Bhatia Date: Mon, 1 Jul 2024 11:09:11 -0700 Subject: [PATCH] fix: add missing provider --- main.tf | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/main.tf b/main.tf index d954969..212adac 100644 --- a/main.tf +++ b/main.tf @@ -23,6 +23,10 @@ resource "random_id" "uniq" { byte_length = 4 } +provider "azurerm" { + features {} +} + resource "azurerm_resource_group" "lacework" { name = local.resource_group_name location = local.resource_group_location