add another s3 bucket for attic binary cache

This commit is contained in:
TheWanderingCrow 2025-02-08 14:17:36 -05:00
parent 4b71b5bae8
commit 3f423c589c

View file

@ -22,18 +22,27 @@
profile = "wce";
};
resource."aws_s3_bucket"."state" = {
bucket_prefix = "wce-";
tags = {
Name = "WCE State Bucket";
resource = {
"aws_s3_bucket"."state" = {
bucket_prefix = "wce-";
tags = {
Name = "WCE State Bucket";
};
};
"aws_s3_bucket"."attic-cache" = {
bucket_prefix = "wce-";
tags = {
Name = "WCE Attic Binary Cache";
};
};
"digitalocean_droplet"."do-wce-lighthouse1" = {
image = "177939596"; # nixos-digitalocean
name = "WCE-Lighthouse1";
region = "nyc3";
size = "s-1vcpu-1gb";
ssh_keys = ["45378200"];
};
};
resource."digitalocean_droplet"."do-wce-lighthouse1" = {
image = "177939596"; # nixos-digitalocean
name = "WCE-Lighthouse1";
region = "nyc3";
size = "s-1vcpu-1gb";
ssh_keys = ["45378200"];
};
}