⚰️ remove pulumi

This commit is contained in:
James Walker 2023-07-26 15:01:14 -04:00
parent e1871a2030
commit 74296f8b9b
Signed by: walkah
GPG Key ID: 3C127179D6086E93
6 changed files with 0 additions and 1697 deletions

View File

@ -1,3 +0,0 @@
config:
digitalocean:token:
secure: AAABAAVsdUUt74fFhXPNy+qr0l0Ciku2PfjJY43XTfWG3YlseqFUGW3RmpGPk6CyXtkyQu321goZlaoLISy+75t/1tmKzdPzew5N46WfLybPAe7mANOCukPybLqhfKnJxQSgDfvQjw==

View File

@ -1,3 +0,0 @@
name: athens
runtime: nodejs
description: city state in the cloud

View File

@ -1,17 +0,0 @@
import * as digitalocean from "@pulumi/digitalocean";
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,
});
export const socratesIP = socrates.ipv4Address;

1645
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -1,11 +0,0 @@
{
"name": "athens",
"main": "index.ts",
"devDependencies": {
"@types/node": "^16"
},
"dependencies": {
"@pulumi/pulumi": "^3.0.0",
"@pulumi/digitalocean": "^4.0.0"
}
}

View File

@ -1,18 +0,0 @@
{
"compilerOptions": {
"strict": true,
"outDir": "bin",
"target": "es2016",
"module": "commonjs",
"moduleResolution": "node",
"sourceMap": true,
"experimentalDecorators": true,
"pretty": true,
"noFallthroughCasesInSwitch": true,
"noImplicitReturns": true,
"forceConsistentCasingInFileNames": true
},
"files": [
"index.ts"
]
}