Allow setting custom PXE boot kernel_args on bare-metal

This commit is contained in:
bzub
2017-10-02 11:47:44 -05:00
committed by Dalton Hubble
parent 7b5ffd0085
commit e765fb310d
4 changed files with 20 additions and 2 deletions

View File

@ -109,3 +109,9 @@ variable "container_linux_oem" {
default = ""
description = "Specify an OEM image id to use as base for the installation (e.g. ami, vmware_raw, xen) or leave blank for the default image"
}
variable "kernel_args" {
description = "Additional kernel arguments the servers should boot with."
type = "list"
default = []
}