Skip to content

Commit

Permalink
Change provider version requirements in module
Browse files Browse the repository at this point in the history
  • Loading branch information
phillebaba committed Dec 4, 2023
1 parent f37fe4d commit b2c0479
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions terraform-module/main.tf
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
terraform {
required_providers {
azuread = {
version = "2.45.0"
source = "hashicorp/azuread"
version = ">=2.45.0"
}
azurerm = {
version = "3.80.0"
source = "hashicorp/azurerm"
version = ">=3.80.0"
}
azapi = {
source = "Azure/azapi"
version = "1.10.0"
version = ">=1.10.0"
}
random = {
source = "hashicorp/random"
version = "3.5.1"
version = ">=3.5.1"
}
}
}
Expand Down

0 comments on commit b2c0479

Please sign in to comment.