flatcar_user

This commit is contained in:
Florian Nowarre 2022-09-21 15:05:51 +02:00
parent 2505c4557b
commit 2c9c74fda0
2 changed files with 2 additions and 1 deletions

View file

@ -146,6 +146,7 @@ data "template_file" "machine-configs" {
vars = {
ssh_keys = jsonencode(var.ssh_public_keys)
user_flatcar = jsonencode(var.user_flatcar)
name = each.key
}
}

View file

@ -27,7 +27,7 @@ variable "ssh_public_keys" {
type = list(string)
}
variable "ssh_public_keys" {
variable "ssh_private_key_path" {
type = string
default = "~/.ssh/id_rsa"
}