Compare commits

...

11 Commits

Author SHA1 Message Date
4258c8fbed Version bump
Signed-off-by: Jason Rothstein <fdragon@fdragon.org>
2024-04-21 21:25:04 -05:00
27b4a7e1dd Version bump 2024-03-15 21:53:19 -05:00
3187ff2cc4 Version bump 2023-12-25 14:50:35 -06:00
4b8bedc9f8 Version bump 2023-12-16 17:48:41 -06:00
e9090586f2 Default to Fedora 38 2023-11-09 22:44:19 -06:00
2bef80b6b2 Version bump 2023-11-09 22:42:35 -06:00
3f651665ee Provider version bump 2023-10-15 20:35:32 -05:00
ab95370518 Move to OpenTofu 1.6.0 2023-10-07 13:10:26 -05:00
cabca6f968 Update versions 2023-10-01 13:36:00 -05:00
b9bdb87038 Block BSL versions of terraform 2023-09-06 18:51:54 -05:00
6378f816b7 Version bump 2023-07-24 22:48:12 -05:00
3 changed files with 6 additions and 6 deletions

View File

@@ -3,11 +3,11 @@ all: init fmt validate
.PHONY: init
init:
terraform init -upgrade=false
tofu init -upgrade=false
.PHONY: initupgrade
initupgrade:
terraform init -upgrade=true
tofu init -upgrade=true
.PHONY: fmt
fmt: init
@@ -15,7 +15,7 @@ fmt: init
.PHONY: validate
validate: init fmt
terraform validate
tofu validate
.PHONY: clean
clean:

View File

@@ -2,8 +2,8 @@ terraform {
required_providers {
linode = {
source = "linode/linode"
version = ">= 2.5.1"
version = ">= 2.19.0"
}
}
required_version = ">= 1.5.2"
required_version = ">= 1.6.2"
}

View File

@@ -1,4 +1,4 @@
variable "image" {
default = "linode/fedora36"
default = "linode/fedora38"
type = string
}