mirror of
https://github.com/outbackdingo/terraform-provider-ct.git
synced 2026-01-27 10:20:38 +00:00
* Show Butane Config for Fedora CoreOS (`fcos` variant) * Show Butane Config for Flatcar Linux (`flatcar` variant)
19 lines
470 B
HCL
19 lines
470 B
HCL
# Butane Config for Fedora CoreOS
|
|
data "ct_config" "fedora-coreos-config" {
|
|
content = templatefile("${path.module}/content/fcos.yaml", {
|
|
message = "Hello World!"
|
|
})
|
|
strict = true
|
|
pretty_print = true
|
|
|
|
snippets = [
|
|
file("${path.module}/content/fcos-snippet.yaml"),
|
|
]
|
|
}
|
|
|
|
# Render as Ignition
|
|
resource "local_file" "fedora-coreos" {
|
|
content = data.ct_config.fedora-coreos-config.rendered
|
|
filename = "${path.module}/output/fedora-coreos.ign"
|
|
}
|