Compare commits

..

No commits in common. "master" and "2023-04-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
init:
tofu init -upgrade=false
terraform init -upgrade=false
.PHONY: initupgrade
initupgrade:
tofu init -upgrade=true
terraform init -upgrade=true
.PHONY: fmt
fmt: init
tofu fmt
terraform fmt
.PHONY: validate
validate: init fmt
tofu validate
terraform validate
.PHONY: clean
clean:

View File

@ -2,8 +2,8 @@ terraform {
required_providers {
linode = {
source = "linode/linode"
version = ">= 2.39.0"
version = ">= 1.30.0"
}
}
required_version = ">= 1.9.0"
required_version = ">= 1.4.4"
}

View File

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