Skip to content

Commit

Permalink
Bumped versions
Browse files Browse the repository at this point in the history
  • Loading branch information
adamrushuk committed Jun 3, 2022
1 parent d22ef5c commit 178aea5
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions examples/basic/main.tf
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
terraform {
required_version = ">= 0.13"
required_version = ">= 1.0"

required_providers {
# https://github.com/terraform-providers/terraform-provider-azurerm/releases
azurerm = {
source = "hashicorp/azurerm"
version = "3.3.0"
version = "3.9.0"
}
}
}
Expand Down
6 changes: 3 additions & 3 deletions test/versions.tf
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
terraform {
required_version = ">= 0.13"
required_version = ">= 1.0"

required_providers {
# https://github.com/terraform-providers/terraform-provider-azurerm/releases
azurerm = {
source = "hashicorp/azurerm"
version = "~> 3.3.0"
version = "~> 3.9.0"
}
# https://github.com/terraform-providers/terraform-provider-azuread/releases
azuread = {
source = "hashicorp/azuread"
version = "~> 2.21.0"
version = "~> 2.22.0"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion versions.tf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
terraform {
# versioning syntax: https://www.terraform.io/docs/configuration/version-constraints.html#version-constraint-syntax
required_version = ">= 0.13"
required_version = ">= 1.0"

# versioning syntax: https://www.terraform.io/docs/configuration/modules.html#module-versions
# ~> 1.0 = 1.x
Expand Down

0 comments on commit 178aea5

Please sign in to comment.