Compare commits

...

10 Commits

Author SHA1 Message Date
f8c06623a7 Version bump
Signed-off-by: Jason Rothstein <fdragon@fdragon.org>
2024-04-27 11:22:56 -05:00
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
3 changed files with 6 additions and 6 deletions

View File

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

View File

@@ -2,8 +2,8 @@ terraform {
required_providers { required_providers {
linode = { linode = {
source = "linode/linode" source = "linode/linode"
version = ">= 2.5.2" version = ">= 2.20.0"
} }
} }
required_version = ">= 1.5.3, < 1.6.0" required_version = ">= 1.6.2"
} }

View File

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