Azure / terraform-azurerm-avm-res-network-applicationgateway

Azure Application Gateway serves as a web traffic load balancer, allowing you to efficiently handle traffic for your web applications. This Terraform module is designed for the rapid creation of an Application Gateway that includes various customizable features.
MIT License
7 stars 5 forks source link

[AVM Module Issue]: Wrong Constraints for hashicorp/random #84

Open thamjayshen opened 18 hours ago

thamjayshen commented 18 hours ago

Check for previous/existing GitHub issues

Issue Type?

No response

(Optional) Module Version

0.2.0

(Optional) Correlation Id

No response

Description

Error: Could not retrieve the list of available versions for provider hashicorp/random: no available releases match the given constraints >= 3.5.0, ~> 3.5.0, ~> 3.5, >= 3.5.1, ~> 3.6, >= 3.6.2, < 4.0.0

Discussion: In terraform.tf the hashicorp/random was changed from version = ">3.5.0" to version = "~>3.5.0". However this limits to only versions 3.5.X and will have impact on other modules that require higher versions.

Fix: Instead it should be version = "~>3.5"

But4ler commented 11 hours ago

You beat me by 7 hours to open the same issue ^^