Skip to content

Commit

Permalink
terraform: document that nixos_generate_config_path and nixos_facter_…
Browse files Browse the repository at this point in the history
…path are mutally exclusive
  • Loading branch information
Mic92 authored Oct 20, 2024
1 parent 9462024 commit 342b543
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions terraform/install/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -112,12 +112,12 @@ variable "flake" {

variable "nixos_generate_config_path" {
type = string
description = "Path to which to write a `hardware-configuration.nix` generated by `nixos-generate-config`."
description = "Path to which to write a `hardware-configuration.nix` generated by `nixos-generate-config`. This option cannot be set at the same time as `nixos_facter_path`."
default = ""
}

variable "nixos_facter_path" {
type = string
description = "Path to which to write a `facter.json` generated by `nixos-facter`."
description = "Path to which to write a `facter.json` generated by `nixos-facter`. This option cannot be set at the same time as `nixos_generate_config_path`."
default = ""
}

0 comments on commit 342b543

Please sign in to comment.