Skip to content

Commit

Permalink
Fix test module
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredfholgate committed Sep 26, 2024
1 parent 4beb2c5 commit 8107c49
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 7 deletions.
9 changes: 8 additions & 1 deletion templates/complete_vnext/terraform.tf
Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@
terraform {
required_version = "~> 1.6"
required_providers {
azurerm = "~> 3.88"
azurerm = {
source = "hashicorp/azurerm"
version = "~> 3.107"
}
azapi = {
source = "Azure/azapi"
version = "~> 1.13"
}
}
# backend "azurerm" {}
}
Expand Down
6 changes: 3 additions & 3 deletions templates/test/terraform.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@ terraform {
required_providers {
azurerm = {
source = "hashicorp/azurerm"
version = "3.61.0"
version = "~> 3.107"
}
azapi = {
source = "Azure/azapi"
version = "1.13.1"
version = "~> 1.13"
}
random = {
source = "hashicorp/random"
version = "3.5.1"
version = "~> 3.5"
}
}
# backend "azurerm" {}
Expand Down
3 changes: 0 additions & 3 deletions templates/test/terraform.tfvars

This file was deleted.

0 comments on commit 8107c49

Please sign in to comment.