Skip to content

Commit

Permalink
Merge branch 'feat/tf13' into 'master'
Browse files Browse the repository at this point in the history
feat!: bump minimum version of Terraform to `v1.3`

See merge request claranet/projects/cloud/azure/terraform/modules/vnet!33
  • Loading branch information
Shr3ps committed Jun 6, 2024
2 parents c019dbb + 60e0d36 commit 2162a59
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 10 deletions.
9 changes: 4 additions & 5 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
---
variables:
TF_MIN_VERSION: "0.13"
AZURERM_PROVIDER_MIN_VERSION: "1.31"
TF_MIN_VERSION: "1.3"
AZURERM_PROVIDER_MIN_VERSION: "3.0"

include:
- project: 'claranet/projects/cloud/azure/terraform/ci'
- project: "claranet/projects/cloud/azure/terraform/ci"
ref: master
file: '/pipeline.yml'
...
file: "/pipeline.yml"
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ module "azure_virtual_network" {
| Name | Version |
|------|---------|
| azurecaf | ~> 1.2, >= 1.2.22 |
| azurerm | >= 1.32 |
| azurerm | ~> 3.0 |

## Modules

Expand Down
4 changes: 2 additions & 2 deletions examples/main/main.tf
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
terraform {
required_version = ">= 1.0.0"
required_version = ">= 1.3"
required_providers {
azurerm = {
source = "hashicorp/azurerm"
version = ">= 2.0.0"
version = ">= 3.0"
}
}
}
Expand Down
4 changes: 2 additions & 2 deletions versions.tf
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
terraform {
required_version = ">= 0.13"
required_version = ">= 1.3"
required_providers {
azurerm = {
source = "hashicorp/azurerm"
version = ">= 1.32"
version = "~> 3.0"
}
azurecaf = {
source = "aztfmod/azurecaf"
Expand Down

0 comments on commit 2162a59

Please sign in to comment.