Skip to content

Commit

Permalink
updated providers configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
cmendible committed Sep 17, 2024
1 parent 5123927 commit d2abc39
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 15 deletions.
14 changes: 1 addition & 13 deletions modules/app_gateway_tcp/providers.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,23 +2,11 @@ terraform {
required_version = "> 0.14"
required_providers {
azurerm = {
version = "= 3.83.0"
}
azapi = {
source = "azure/azapi"
version = "= 1.0.0"
source = "azure/azapi"
}
random = {
version = ">= 3.6.0"
}
}
}

provider "azurerm" {
skip_provider_registration = true
features {
key_vault {
purge_soft_delete_on_destroy = true
}
}
}
11 changes: 9 additions & 2 deletions providers.tf
Original file line number Diff line number Diff line change
@@ -1,12 +1,16 @@
terraform {
required_version = "> 0.14"
required_version = ">= 1.4.6"
required_providers {
azurerm = {
version = "= 3.83.0"
}
azuread = {
version = "= 2.44.0"
}
azapi = {
source = "Azure/azapi"
version = "1.13.1"
}
random = {
version = ">= 3.6.0"
}
Expand All @@ -22,5 +26,8 @@ provider "azurerm" {
key_vault {
purge_soft_delete_on_destroy = true
}
api_management {
purge_soft_delete_on_destroy = true
}
}
}
}

0 comments on commit d2abc39

Please sign in to comment.