Merge pull request #276 from srounce/patch-1

feat(terraform): re-export store path result from all-in-one module
This commit is contained in:
Jörg Thalheim 2024-02-22 06:25:52 +07:00 committed by GitHub
commit 9e34fce5da
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 7 additions and 1 deletions

View File

@ -122,6 +122,8 @@ No resources.
## Outputs
No outputs.
| Name | Description |
| ----------------------------------------------------- | ---------------------------------------------------------- |
| <a name="output_result"></a> [result](#output_result) | The resulting store path from building `nixos_system_attr` |
<!-- END_TF_DOCS -->

View File

@ -46,3 +46,7 @@ module "nixos-rebuild" {
target_host = var.target_host
target_user = var.target_user
}
output "result" {
value = module.system-build.result
}