Version bump and cleanup deprecations

Signed-off-by: Jason Rothstein <fdragon@fdragon.org>
This commit is contained in:
Jason Rothstein 2025-05-11 18:31:25 -05:00
parent 1f491fab93
commit ed7df9d205
Signed by: jmrothst
GPG Key ID: 741BF3C536829D46
3 changed files with 3 additions and 3 deletions

View File

@ -11,7 +11,7 @@ initupgrade:
.PHONY: fmt .PHONY: fmt
fmt: init fmt: init
terraform fmt tofu fmt
.PHONY: validate .PHONY: validate
validate: init fmt validate: init fmt

View File

@ -2,5 +2,5 @@ resource "linode_domain_record" "this_ipv4" {
domain_id = data.linode_domain.this.id domain_id = data.linode_domain.this.id
name = var.host_name name = var.host_name
record_type = "A" record_type = "A"
target = linode_instance.this.ip_address target = linode_instance.this.ipv4
} }

View File

@ -2,7 +2,7 @@ terraform {
required_providers { required_providers {
linode = { linode = {
source = "linode/linode" source = "linode/linode"
version = ">= 2.38.0" version = ">= 2.39.0"
} }
} }
required_version = ">= 1.9.0" required_version = ">= 1.9.0"