mirror of
https://github.com/TheWanderingCrow/CrOS.git
synced 2026-01-19 05:24:12 -05:00
16 lines
369 B
Nix
16 lines
369 B
Nix
{...}: {
|
|
terraform.required_providers = {
|
|
digitalocean = {
|
|
source = "digitalocean/digitalocean";
|
|
version = "2.48.2";
|
|
};
|
|
};
|
|
|
|
resource."digitalocean_droplet"."do-wce-lighthouse1" = {
|
|
image = "177939596"; # nixos-digitalocean
|
|
name = "do-wce-lighthouse1";
|
|
region = "nyc3";
|
|
size = "s-1vcpu-1gb";
|
|
ssh_keys = ["45378200"];
|
|
};
|
|
}
|