From 3b033d39438419be440c6767368897b02ed1d55c Mon Sep 17 00:00:00 2001 From: Manuel Rafeli Date: Wed, 25 Sep 2024 14:29:38 +0200 Subject: [PATCH] fix: Error ensuring Resource Providers are registered (#190) --- infra/container_apps/user-cdc/main.tf | 2 ++ infra/container_apps/user-group-ms/main.tf | 2 ++ infra/container_apps/user-ms/main.tf | 2 ++ infra/repository/main.tf | 2 ++ 4 files changed, 8 insertions(+) diff --git a/infra/container_apps/user-cdc/main.tf b/infra/container_apps/user-cdc/main.tf index 01982334..b8642e92 100644 --- a/infra/container_apps/user-cdc/main.tf +++ b/infra/container_apps/user-cdc/main.tf @@ -6,6 +6,8 @@ terraform { provider "azurerm" { features {} + skip_provider_registration = true + } module "container_app_user_cdc" { diff --git a/infra/container_apps/user-group-ms/main.tf b/infra/container_apps/user-group-ms/main.tf index 37bcd155..b87d88b2 100644 --- a/infra/container_apps/user-group-ms/main.tf +++ b/infra/container_apps/user-group-ms/main.tf @@ -6,6 +6,8 @@ terraform { provider "azurerm" { features {} + skip_provider_registration = true + } module "container_app_user_group" { diff --git a/infra/container_apps/user-ms/main.tf b/infra/container_apps/user-ms/main.tf index a68c583d..9fc73faa 100644 --- a/infra/container_apps/user-ms/main.tf +++ b/infra/container_apps/user-ms/main.tf @@ -6,6 +6,8 @@ terraform { provider "azurerm" { features {} + skip_provider_registration = true + } module "container_app_user_ms" { diff --git a/infra/repository/main.tf b/infra/repository/main.tf index 63962df6..8f519c2d 100644 --- a/infra/repository/main.tf +++ b/infra/repository/main.tf @@ -6,6 +6,8 @@ terraform { provider "azurerm" { features {} + skip_provider_registration = true + } module "repository" {