mirror of
https://github.com/puppetmaster/typhoon.git
synced 2024-12-26 04:09:34 +01:00
68726a2773
* Transition from discouraging self-hosted etcd for bare-metal, to removing it as an option * See #13 and FAQ for self-hosted etcd discussion
38 lines
1.3 KiB
HCL
38 lines
1.3 KiB
HCL
// Install Container Linux to disk
|
|
resource "matchbox_group" "container-linux-install" {
|
|
count = "${length(var.controller_names) + length(var.worker_names)}"
|
|
|
|
name = "${format("container-linux-install-%s", element(concat(var.controller_names, var.worker_names), count.index))}"
|
|
profile = "${var.cached_install == "true" ? matchbox_profile.cached-container-linux-install.name : matchbox_profile.container-linux-install.name}"
|
|
|
|
selector {
|
|
mac = "${element(concat(var.controller_macs, var.worker_macs), count.index)}"
|
|
}
|
|
|
|
metadata {
|
|
ssh_authorized_key = "${var.ssh_authorized_key}"
|
|
}
|
|
}
|
|
|
|
resource "matchbox_group" "controller" {
|
|
count = "${length(var.controller_names)}"
|
|
name = "${format("%s-%s", var.cluster_name, element(var.controller_names, count.index))}"
|
|
profile = "${element(matchbox_profile.controllers.*.name, count.index)}"
|
|
|
|
selector {
|
|
mac = "${element(var.controller_macs, count.index)}"
|
|
os = "installed"
|
|
}
|
|
}
|
|
|
|
resource "matchbox_group" "worker" {
|
|
count = "${length(var.worker_names)}"
|
|
name = "${format("%s-%s", var.cluster_name, element(var.worker_names, count.index))}"
|
|
profile = "${element(matchbox_profile.workers.*.name, count.index)}"
|
|
|
|
selector {
|
|
mac = "${element(var.worker_macs, count.index)}"
|
|
os = "installed"
|
|
}
|
|
}
|