2022-06-04 01:15:22 +02:00
|
|
|
{ depot, lib, pkgs, ... }:
|
2021-12-26 01:08:03 +01:00
|
|
|
|
2022-06-04 01:15:22 +02:00
|
|
|
depot.nix.readTree.drvTargets rec {
|
2021-12-26 01:08:03 +01:00
|
|
|
# Provide a Terraform wrapper with the right provider installed.
|
|
|
|
terraform = pkgs.terraform.withPlugins (p: [
|
|
|
|
p.keycloak
|
|
|
|
]);
|
2022-06-04 01:15:22 +02:00
|
|
|
|
2022-06-06 23:29:28 +02:00
|
|
|
validate = depot.tools.checks.validateTerraform {
|
|
|
|
inherit terraform;
|
|
|
|
name = "keycloak";
|
|
|
|
src = lib.cleanSource ./.;
|
|
|
|
};
|
2021-12-26 01:08:03 +01:00
|
|
|
}
|