Another variable name adjustment
This commit is contained in:
parent
0b56ad68f3
commit
995aa95e57
1 changed files with 2 additions and 2 deletions
|
|
@ -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,
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue