diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index b8c5ae3..a1ad043 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -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" diff --git a/README.md b/README.md index 6a9c0c3..775175f 100644 --- a/README.md +++ b/README.md @@ -69,7 +69,7 @@ module "azure_virtual_network" { | Name | Version | |------|---------| | azurecaf | ~> 1.2, >= 1.2.22 | -| azurerm | >= 1.32 | +| azurerm | ~> 3.0 | ## Modules diff --git a/examples/main/main.tf b/examples/main/main.tf index 0d94df5..2920c6b 100644 --- a/examples/main/main.tf +++ b/examples/main/main.tf @@ -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" } } } diff --git a/versions.tf b/versions.tf index c784f57..dd12ba0 100644 --- a/versions.tf +++ b/versions.tf @@ -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"