athens/index.ts

18 lines
444 B
TypeScript
Raw Normal View History

2023-02-07 22:08:49 -05:00
import * as digitalocean from "@pulumi/digitalocean";
2023-02-09 22:37:21 -05:00
const socrates = new digitalocean.Droplet("socrates", {
backups: true,
image: "72067660",
ipv6: true,
monitoring: true,
name: "socrates",
privateNetworking: true,
region: digitalocean.Region.TOR1,
size: digitalocean.DropletSlug.DropletS8VCPU16GB,
vpcUuid: "392caea6-dc7f-11e8-b1a9-3cfdfea9ee58",
}, {
protect: true,
2023-02-07 22:08:49 -05:00
});
2023-02-09 22:37:21 -05:00
export const socratesIP = socrates.ipv4Address;