From ed67349b9666a2d091fc5cebc5efdc8f69740637 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Thu, 23 Feb 2023 17:10:09 +0100 Subject: [PATCH] terraform: improve module description --- terraform/all-in-one/variables.tf | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/terraform/all-in-one/variables.tf b/terraform/all-in-one/variables.tf index e4b1047..82f1391 100644 --- a/terraform/all-in-one/variables.tf +++ b/terraform/all-in-one/variables.tf @@ -7,18 +7,18 @@ variable "kexec_tarball_url" { # To make this re-usuable we maybe should accept a store path here? variable "nixos_partitioner_attr" { type = string - description = "nixos partitioner and mount script" + description = "Nixos partitioner and mount script i.e. your-flake#nixosConfigurations.your-evaluated-nixos.config.system.build.diskoNoDeps or just your-evaluated.config.system.build.diskNoDeps. `config.system.build.diskNoDeps` is provided by the disko nixos module" } # To make this re-usuable we maybe should accept a store path here? variable "nixos_system_attr" { type = string - description = "The nixos system to deploy" + description = "The nixos system to deploy i.e. your-flake#nixosConfigurations.your-evaluated-nixos.config.system.build.toplevel or just your-evaluated-nixos.config.system.build.toplevel if you are not using flakes" } variable "file" { type = string - description = "file to get the nixos_system_attr and nixos_partitioner_attr from if they are not flakes." + description = "Nix file containing the nixos_system_attr and nixos_partitioner_attr. Use this if you are not using flake" default = null }