tvl-depot/ops/keycloak/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
336 B
Nix
Raw Normal View History

{ depot, lib, pkgs, ... }:
depot.nix.readTree.drvTargets rec {
# Provide a Terraform wrapper with the right provider installed.
terraform = pkgs.terraform.withPlugins (p: [
p.keycloak
]);
validate = depot.tools.checks.validateTerraform {
inherit terraform;
name = "keycloak";
src = lib.cleanSource ./.;
};
}