19 lines
459 B
Terraform
19 lines
459 B
Terraform
resource "talos_machine_secrets" "this" {
|
|||
|
|
talos_version = local.talos_version
|
||
|
|
}
|
||
|
|
|
||
|
|
resource "talos_image_factory_schematic" "this" {
|
||
|
|
schematic = file("${path.root}/files/talos_image_schematic.yml")
|
||
|
|
}
|
||
|
|
|
||
|
|
data "talos_image_factory_versions" "this" {
|
||
|
|
filters = {
|
||
|
|
stable_versions_only = true
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
data "talos_image_factory_urls" "this" {
|
||
|
|
talos_version = local.talos_version
|
||
|
|
schematic_id = talos_image_factory_schematic.this.id
|
||
|
|
platform = "nocloud"
|
||
|
|
}
|