Compare commits

..

7 Commits

Author SHA1 Message Date
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
dc390ed095 Version bump 2023-07-02 23:05:41 -05:00
63a1d8c8b9 Version bump 2023-05-07 14:34:48 -05:00
5252eea43d Version bump 2023-04-22 15:43:37 -05:00
2 changed files with 5 additions and 5 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 = ">= 1.30.0" version = ">= 2.9.0"
} }
} }
required_version = ">= 1.4.4" required_version = ">= 1.6.0"
} }