Trying to stringify arguments
This commit is contained in:
parent
ac76db9eba
commit
ec8e9f061e
1 changed files with 3 additions and 3 deletions
6
main.tf
6
main.tf
|
|
@ -122,15 +122,15 @@ resource "libvirt_domain" "talos-controlplane" {
|
||||||
# Talos kernel parameters
|
# Talos kernel parameters
|
||||||
cmdline = [
|
cmdline = [
|
||||||
{
|
{
|
||||||
talos.platform = "metal"
|
"talos.platform" = "metal"
|
||||||
talos.config = base64encode(data.talos_machine_configuration.controlplane.machine_configuration) # FIXED: Correct attribute
|
"talos.config" = base64encode(data.talos_machine_configuration.controlplane.machine_configuration) # FIXED: Correct attribute
|
||||||
ip = "10.5.0.2::10.5.0.1:255.255.255.0::eth0:off"
|
ip = "10.5.0.2::10.5.0.1:255.255.255.0::eth0:off"
|
||||||
init_on_alloc = "1"
|
init_on_alloc = "1"
|
||||||
"_" = "slab_nomerge"
|
"_" = "slab_nomerge"
|
||||||
pti = "on"
|
pti = "on"
|
||||||
console = "tty0"
|
console = "tty0"
|
||||||
console = "ttyS0"
|
console = "ttyS0"
|
||||||
printk.devkmsg = "on"
|
"printk.devkmsg" = "on"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue