Skip to content

Commit

Permalink
Reintroduce Terraform
Browse files Browse the repository at this point in the history
OpenTofu is not a full drop-in replacement: It fails when it queries
additional Terraform providers from the registry for cailleach
commands (e.g. `make re-init`.)

OpenTofu now runs its own registry which seems to not be a 1:1 copy of
Terraform's.
  • Loading branch information
supersven committed May 31, 2024
1 parent 7b6a587 commit 9d81435
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,10 @@ let
sources = import ./nix/sources.nix;
pkgs = import sources.nixpkgs {
inherit system;
config = { };
config = {
# To get Terraform (OpenTofu is not a full drop-in replacement)
allowUnfree = true;
};
overlays = [
(import ./nix/overlay.nix)
];
Expand Down Expand Up @@ -44,6 +47,7 @@ rec {
moreutils
skopeo
sops
terraform
opentofu
yq
create-container-dump
Expand Down

0 comments on commit 9d81435

Please sign in to comment.