Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Update Terraform required_version for consistency #164

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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