Skip to content

Commit

Permalink
add back acme provider to be able to destroy it later
Browse files Browse the repository at this point in the history
  • Loading branch information
johnalotoski committed Oct 13, 2021
1 parent 7e179b7 commit e4366c6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions modules/terraform/core.nix
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,10 @@ in {
};

provider = {
acme = {
server_url = "https://acme-v02.api.letsencrypt.org/directory";
};

aws = [{ region = config.cluster.region; }] ++ (lib.forEach regions
(region: {
inherit region;
Expand Down
2 changes: 1 addition & 1 deletion overlay.nix
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ in final: prev: {
vault-bin = prev.callPackage ./pkgs/vault-bin.nix { };

terraform-provider-names =
[ "aws" "consul" "local" "nomad" "null" "sops" "tls" "vault" ];
[ "acme" "aws" "consul" "local" "nomad" "null" "sops" "tls" "vault" ];

terraform-provider-versions = lib.listToAttrs (map (name:
let
Expand Down

0 comments on commit e4366c6

Please sign in to comment.