Another variable name adjustment

This commit is contained in:
vandomej 2025-09-28 12:23:16 -07:00
parent 0b56ad68f3
commit 995aa95e57

View file

@ -46,12 +46,12 @@ resource "random_id" "cluster_suffix" {
resource "null_resource" "talos_cluster" { resource "null_resource" "talos_cluster" {
triggers = { triggers = {
cluster_name = locals.unique_cluster_name cluster_name = local.unique_cluster_name
memory_mb = var.memory_mb memory_mb = var.memory_mb
vcpu_count = var.vcpu_count vcpu_count = var.vcpu_count
talos_version = var.talos_version talos_version = var.talos_version
config_hash = sha1(join("", [ config_hash = sha1(join("", [
locals.unique_cluster_name, local.unique_cluster_name,
tostring(var.memory_mb), tostring(var.memory_mb),
tostring(var.vcpu_count), tostring(var.vcpu_count),
var.talos_version, var.talos_version,