Compare commits

..

No commits in common. "master" and "2023-07-02.01" have entirely different histories.

3 changed files with 7 additions and 7 deletions

View File

@ -3,19 +3,19 @@ all: init fmt validate
.PHONY: init .PHONY: init
init: init:
tofu init -upgrade=false terraform init -upgrade=false
.PHONY: initupgrade .PHONY: initupgrade
initupgrade: initupgrade:
tofu init -upgrade=true terraform init -upgrade=true
.PHONY: fmt .PHONY: fmt
fmt: init fmt: init
tofu fmt terraform fmt
.PHONY: validate .PHONY: validate
validate: init fmt validate: init fmt
tofu validate terraform 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.39.0" version = ">= 2.5.1"
} }
} }
required_version = ">= 1.9.0" required_version = ">= 1.5.2"
} }

View File

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