Skip to content

Commit

Permalink
Ensure terraform uses azurerm 4.0 provider
Browse files Browse the repository at this point in the history
  • Loading branch information
audunsolemdal committed Sep 2, 2024
1 parent 80154a8 commit c2c6333
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions providers.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ terraform {
required_providers {
azurerm = {
source = "hashicorp/azurerm"
version = "~> 3.0"
version = ">= 3.0, < 5.0"
configuration_aliases = [azurerm.p-dns]
}
random = {
source = "hashicorp/random"
version = "~> 3.5"
version = "> 3.0, < 5.0"
}
}
}

0 comments on commit c2c6333

Please sign in to comment.