diff options
| author | Franck Cuny <franck@fcuny.net> | 2022-10-04 17:50:11 -0700 |
|---|---|---|
| committer | Franck Cuny <franck@fcuny.net> | 2022-10-04 17:50:11 -0700 |
| commit | 255538c32e10e5dac29cac39a28ce499227f067f (patch) | |
| tree | 2ece731263ebe6fc40e37a32f8ad5af969d3aed2 /ops/github/default.nix | |
| parent | ref(tools/ssh-key-to-forge): replaced by gh-ssh-keys (diff) | |
| download | infra-255538c32e10e5dac29cac39a28ce499227f067f.tar.gz | |
ops(terraform): individual actions for init/plan/apply
Don't do all of these actions together, instead provide helpers for both
init, plan, and apply.
Diffstat (limited to '')
| -rw-r--r-- | ops/github/default.nix | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/ops/github/default.nix b/ops/github/default.nix new file mode 100644 index 0000000..a36aa12 --- /dev/null +++ b/ops/github/default.nix @@ -0,0 +1,29 @@ +{ pkgs }: +let + terraform = pkgs.terraform.withPlugins (p: [ + p.google + p.github + ]); +in +pkgs.stdenv.mkDerivation rec { + name = "tf-github"; + src = ./.; + + init = pkgs.writeShellScriptBin "tf-github-init" '' + set -ueo pipefail + cd $(git rev-parse --show-toplevel)/ops/github + ${terraform}/bin/terraform init + ''; + + plan = pkgs.writeShellScriptBin "tf-github-plan" '' + set -ueo pipefail + cd $(git rev-parse --show-toplevel)/ops/github + ${terraform}/bin/terraform plan + ''; + + apply = pkgs.writeShellScriptBin "tf-github-apply" '' + set -ueo pipefail + cd $(git rev-parse --show-toplevel)/ops/github + ${terraform}/bin/terraform apply + ''; +} |
