Skip to content

Commit

Permalink
use better versions
Browse files Browse the repository at this point in the history
Terraform 1.5.7 wsa the last Terraform verison before the liecense change and the release of OpenTofu.
We could also think of using 1.0.0 for the lower bound. The Incus version is important to help communicate
the versions the developers used during the last successful tofu apply.
  • Loading branch information
jarrodu committed Mar 17, 2024
1 parent bce6fdd commit 4e21e83
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions terraform/baremetal-incus/versions.tf
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
terraform {
required_version = "1.6.2"
required_version = ">=1.5.7"
required_providers {
incus = {
source = "lxc/incus"
version = "0.1.0"
version = ">=0.1.1"
}
}
}
4 changes: 2 additions & 2 deletions terraform/services/versions.tf
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
terraform {
required_version = "1.6.2"
required_version = ">=1.5.7"
required_providers {
incus = {
source = "lxc/incus"
version = "0.1.0"
version = ">=0.1.1"
}
}
}
4 changes: 2 additions & 2 deletions terraform/versions.tf
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
terraform {
required_version = "1.6.2"
required_version = ">=1.5.7"
required_providers {
incus = {
source = "lxc/incus"
version = "0.1.0"
version = ">=0.1.1"
}
}
}
Expand Down

0 comments on commit 4e21e83

Please sign in to comment.