Skip to content

Commit

Permalink
upgrade to v6 module
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredfholgate committed Jun 28, 2024
1 parent f03992c commit ced8aa0
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 3 deletions.
2 changes: 1 addition & 1 deletion templates/complete/main.tf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module "enterprise_scale" {
source = "Azure/caf-enterprise-scale/azurerm"
version = "~> 5.2.0"
version = "~> 6.0.0"

count = length(local.archetypes) > 0 ? 1 : 0

Expand Down
14 changes: 12 additions & 2 deletions templates/complete/terraform.tf
Original file line number Diff line number Diff line change
@@ -1,11 +1,21 @@
terraform {
required_version = "~> 1.6"
required_version = "~> 1.8"
required_providers {
azurerm = "~> 3.88"
azurerm = {
source = "hashicorp/azurerm"
version = "~> 3.107"
}
azapi = {
source = "Azure/azapi"
version = "~> 1.13"
}
}
# backend "azurerm" {}
}

provider "azapi" {
}

provider "azurerm" {
skip_provider_registration = true
features {}
Expand Down

0 comments on commit ced8aa0

Please sign in to comment.