Skip to content

Commit 818f7f4

Browse files
committed
Limit azurerm provider's version since enforce_private_link_endpoint_network_policies in azurerm_subnet will be removed in 4.x.
1 parent 4f9d6a5 commit 818f7f4

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

examples/named_cluster/providers.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ terraform {
22
required_providers {
33
azurerm = {
44
source = "hashicorp/azurerm"
5-
version = ">=3.11.0"
5+
version = ">=3.11.0, < 4.0"
66
}
77
curl = {
88
source = "anschoewe/curl"

examples/startup/providers.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ terraform {
22
required_providers {
33
azurerm = {
44
source = "hashicorp/azurerm"
5-
version = ">=3.11.0"
5+
version = ">=3.11.0, < 4.0"
66
}
77
curl = {
88
source = "anschoewe/curl"

examples/without_monitor/providers.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ terraform {
22
required_providers {
33
azurerm = {
44
source = "hashicorp/azurerm"
5-
version = ">=3.11.0"
5+
version = ">=3.11.0, < 4.0"
66
}
77
curl = {
88
source = "anschoewe/curl"

0 commit comments

Comments
 (0)