Skip to content

Commit

Permalink
chore: update Terraform required_version to >=1.9, <2.0 for consisten…
Browse files Browse the repository at this point in the history
…cy across AVM modules (#164)
  • Loading branch information
Nepomuceno authored Jan 30, 2025
1 parent 256c0a7 commit db0f4af
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Major version Zero (0.y.z) is for initial development. Anything MAY change at an

The following requirements are needed by this module:

- <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) (>= 1.3.0)
- <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) (>= 1.9, < 2.0)

- <a name="requirement_azapi"></a> [azapi](#requirement\_azapi) (>=2.0, < 3.0)

Expand Down
4 changes: 2 additions & 2 deletions examples/default/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ This deploys the module in its simplest form.

```hcl
terraform {
required_version = ">= 1.3.0"
required_version = ">= 1.9, < 2.0"
required_providers {
azurerm = {
source = "hashicorp/azurerm"
Expand Down Expand Up @@ -119,7 +119,7 @@ module "avm_res_network_virtualnetwork" {

The following requirements are needed by this module:

- <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) (>= 1.3.0)
- <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) (>= 1.9, < 2.0)

- <a name="requirement_azurerm"></a> [azurerm](#requirement\_azurerm) (>= 4, <5)

Expand Down
2 changes: 1 addition & 1 deletion examples/default/main.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
terraform {
required_version = ">= 1.3.0"
required_version = ">= 1.9, < 2.0"
required_providers {
azurerm = {
source = "hashicorp/azurerm"
Expand Down
4 changes: 2 additions & 2 deletions examples/with_availability_zone/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ This deploys the module with a region that has availability zones.

```hcl
terraform {
required_version = ">= 1.3.0"
required_version = ">= 1.9, < 2.0"
required_providers {
azurerm = {
source = "hashicorp/azurerm"
Expand Down Expand Up @@ -131,7 +131,7 @@ module "avm_res_network_virtualnetwork" {

The following requirements are needed by this module:

- <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) (>= 1.3.0)
- <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) (>= 1.9, < 2.0)

- <a name="requirement_azurerm"></a> [azurerm](#requirement\_azurerm) (>= 4, <5)

Expand Down
2 changes: 1 addition & 1 deletion examples/with_availability_zone/main.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
terraform {
required_version = ">= 1.3.0"
required_version = ">= 1.9, < 2.0"
required_providers {
azurerm = {
source = "hashicorp/azurerm"
Expand Down
4 changes: 2 additions & 2 deletions examples/without_availability_zone/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ This deploys the module with a region that has no availability zones.

```hcl
terraform {
required_version = ">= 1.3.0"
required_version = ">= 1.9, < 2.0"
required_providers {
azurerm = {
source = "hashicorp/azurerm"
Expand Down Expand Up @@ -130,7 +130,7 @@ module "avm_res_network_virtualnetwork" {

The following requirements are needed by this module:

- <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) (>= 1.3.0)
- <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) (>= 1.9, < 2.0)

- <a name="requirement_azurerm"></a> [azurerm](#requirement\_azurerm) (>= 4, <5)

Expand Down
2 changes: 1 addition & 1 deletion examples/without_availability_zone/main.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
terraform {
required_version = ">= 1.3.0"
required_version = ">= 1.9, < 2.0"
required_providers {
azurerm = {
source = "hashicorp/azurerm"
Expand Down
2 changes: 1 addition & 1 deletion terraform.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
terraform {
required_version = ">= 1.3.0"
required_version = ">= 1.9, < 2.0"
required_providers {
azapi = {
source = "Azure/azapi"
Expand Down

0 comments on commit db0f4af

Please sign in to comment.