-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* chore(flake): update provider to 6.0.0 * docs(README)
- Loading branch information
1 parent
fac6f94
commit 6b1c0c1
Showing
6 changed files
with
116 additions
and
54 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
_default: | ||
just --list | ||
|
||
build: | ||
nix build --json --no-link --print-build-logs | ||
|
||
cache-build cache_name="altf4llc-os": | ||
just build \ | ||
| jq -r '.[].outputs | to_entries[].value' \ | ||
| cachix push {{ cache_name }} | ||
|
||
cache-inputs cache_name="altf4llc-os": | ||
nix flake archive --json \ | ||
| jq -r '.path,(.inputs|to_entries[].value.path)' \ | ||
| cachix push "{{ cache_name }}" | ||
|
||
cache-shell cache_name="altf4llc-os": | ||
nix develop --profile "dev-profile" -c true | ||
cachix push "{{ cache_name }}" "dev-profile" | ||
|
||
check: | ||
nix flake check | ||
|
||
docs: | ||
terraform-docs markdown table \ | ||
--output-file README.md \ | ||
--output-mode inject . | ||
|
||
init: | ||
terraform init | ||
|
||
validate: | ||
terraform validate |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters