8 lines
192 B
Nix
8 lines
192 B
Nix
{ depot, pkgs, ... }:
|
|
|
|
depot.nix.readTree.drvTargets {
|
|
# Provide a Terraform wrapper with the right provider installed.
|
|
terraform = pkgs.terraform.withPlugins (p: [
|
|
p.keycloak
|
|
]);
|
|
}
|