deploy-stack 0.9.15 → 0.10.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +46 -59
- package/bin/cli.js +3 -0
- package/package.json +1 -1
- package/src/commands/apply.js +133 -0
- package/src/commands/destroy.js +56 -11
- package/src/commands/init.js +10 -26
- package/src/utils/generator.js +11 -7
package/README.md
CHANGED
|
@@ -2,8 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
> The zero-lock-in cloud generator. Eject your containerized web app from expensive PaaS platforms to production-ready, highly available AWS infrastructure in 60 seconds.
|
|
4
4
|
|
|
5
|
+
[](https://www.npmjs.com/package/deploy-stack)
|
|
6
|
+
[](https://www.npmjs.com/package/deploy-stack)
|
|
7
|
+
[](https://trivy.dev/)
|
|
5
8
|
[](https://opensource.org/licenses/MIT)
|
|
6
|
-
[](https://trivy.dev/)
|
|
7
9
|
|
|
8
10
|
<!--  -->
|
|
9
11
|
|
|
@@ -25,22 +27,26 @@ You retain complete ownership of your infrastructure code without relying on bla
|
|
|
25
27
|
|
|
26
28
|
## ✨ Features
|
|
27
29
|
|
|
28
|
-
|
|
29
|
-
* **
|
|
30
|
-
* **
|
|
31
|
-
* **Cost & Observability Baselines:** Prevents runaway AWS bills with explicit 14-day CloudWatch log retention policies and auto-generates 5XX error alerting.
|
|
32
|
-
* **Safe Overwrite Flow:** Idempotent CLI safely backs up existing configurations to timestamped `.bak` files and updates `.gitignore` to guarantee zero data loss during rapid iteration.
|
|
33
|
-
* **Framework Agnostic:** Tailored container presets for Next.js, Express.js, FastAPI, Go, Django, Ruby on Rails, Nuxt 3, and **Zero-Config Static Sites** (React, Vue, SvelteKit, Astro, Vite).
|
|
34
|
-
* **Smart Git Integration:** Automatically detects your working branch (`main`, `master`, `develop`) and binds it directly to the generated GitHub Actions pipeline.
|
|
35
|
-
* **Production-Grade Defaults:** Automatically provisions an Amazon ECS Fargate cluster fronted by an Application Load Balancer across multiple availability zones.
|
|
36
|
-
* **Global Edge Acceleration:** Includes an integrated AWS CloudFront CDN distribution with SSL termination and optimized caching.
|
|
37
|
-
* **Keyless, Zero-Secret CI/CD:** Uses AWS IAM OpenID Connect (OIDC) for automated deployments—no long-lived AWS keys stored in GitHub Secrets.
|
|
38
|
-
* **Remote State with Native S3 Locking:** Automatically creates an encrypted S3 state bucket utilizing modern Terraform (1.7+) native S3 concurrency locking.
|
|
39
|
-
* **Built-in Secrets Sync:** Provides a dedicated CLI workflow to securely push local `.env` variables into AWS Secrets Manager and map them directly into containers at runtime.
|
|
40
|
-
* **Ecosystem Ready:** Integrated directly with the [deploy-stack GitHub Action](https://github.com/marketplace/actions/deploy-stack-aws-fargate-terraform-deploy) for a secure, boilerplate-free continuous deployment pipeline.
|
|
30
|
+
**🚀 Zero-Config Deployments**
|
|
31
|
+
* **Framework Agnostic:** Tailored container presets for Next.js, Express.js, FastAPI, Go, Django, Rails, Nuxt 3, and Static Sites (React, Vue, SvelteKit, Astro).
|
|
32
|
+
* **Smart Discovery:** Automatically detects build output directories and generates highly optimized, multi-stage Dockerfiles.
|
|
41
33
|
* **Database Scaffolding:** Automatically provisions fully isolated, zero-trust AWS RDS PostgreSQL databases for backend monoliths.
|
|
42
|
-
|
|
43
|
-
|
|
34
|
+
|
|
35
|
+
**🛡️ DevSecOps & Security**
|
|
36
|
+
* **Automated Trivy Scanning:** Integrated IaC and container vulnerability scanning on every GitHub Actions run.
|
|
37
|
+
* **Hardened Containers:** Explicitly drops root privileges using `nginx-unprivileged` and distroless bases for strict Fargate security compliance.
|
|
38
|
+
* **Zero-Secret CI/CD:** Utilizes AWS IAM OpenID Connect (OIDC) for automated deployments—no long-lived AWS keys in GitHub.
|
|
39
|
+
* **Built-in Secrets Manager:** Push local `.env` variables directly into encrypted AWS Secrets Manager vaults with a single CLI command.
|
|
40
|
+
|
|
41
|
+
**☁️ AWS Native Architecture**
|
|
42
|
+
* **Production Defaults:** Provisions an Amazon ECS Fargate cluster fronted by an Application Load Balancer across multiple availability zones.
|
|
43
|
+
* **Global Edge Acceleration:** Integrated AWS CloudFront CDN distribution with SSL termination and edge caching.
|
|
44
|
+
* **Cost & Observability:** Prevents runaway AWS bills with explicit 14-day CloudWatch log retention and auto-generates 5XX error alerting.
|
|
45
|
+
|
|
46
|
+
**🛠️ Developer Experience**
|
|
47
|
+
* **Zero Vendor Lock-In:** Generates standard, readable Terraform (`.tf`) files. You own the infrastructure.
|
|
48
|
+
* **Native S3 State Locking:** Automatically creates an encrypted S3 state bucket utilizing modern Terraform concurrency locking.
|
|
49
|
+
* **Safe Iteration:** Idempotent CLI safely backs up existing configurations to `.bak` files to guarantee zero data loss.
|
|
44
50
|
|
|
45
51
|
---
|
|
46
52
|
|
|
@@ -48,62 +54,44 @@ You retain complete ownership of your infrastructure code without relying on bla
|
|
|
48
54
|
|
|
49
55
|
Run the CLI directly in your project root:
|
|
50
56
|
|
|
51
|
-
|
|
57
|
+
\`\`\`bash
|
|
52
58
|
npx deploy-stack
|
|
53
|
-
|
|
59
|
+
\`\`\`
|
|
54
60
|
|
|
55
|
-
The interactive
|
|
56
|
-
1. **Target Directory / Name:** (Type `.` to bootstrap your current directory)
|
|
57
|
-
2. **Setup Mode:** (Choose **Quickstart** for sensible defaults, or **Advanced** for custom scaling and branch names)
|
|
58
|
-
3. **Zero-Config Detection:** The CLI automatically scans your project to detect your framework. For static sites, it intelligently discovers your build output directory (`dist`, `build`, `.output`, etc.) and dynamically configures the hardened Nginx container.
|
|
59
|
-
4. **AWS Region & Compute Tier:** (Select your target region and Fargate size with live cost estimates)
|
|
61
|
+
The interactive wizard will analyze your codebase, detect your framework, estimate your AWS costs, and generate your Terraform and GitHub Actions configurations.
|
|
60
62
|
|
|
61
63
|
---
|
|
62
64
|
|
|
63
|
-
##
|
|
64
|
-
|
|
65
|
-
Avoid committing sensitive environment files to version control. Push local variables directly to AWS:
|
|
65
|
+
## 🧰 CLI Command Reference
|
|
66
66
|
|
|
67
|
-
|
|
68
|
-
npx deploy-stack secrets push .env.production
|
|
69
|
-
```
|
|
70
|
-
*This command encrypts your values in AWS Secrets Manager and updates `terraform/secret_keys.json` to expose those variables inside your ECS tasks at boot.*
|
|
67
|
+
`deploy-stack` manages the entire lifecycle of your infrastructure.
|
|
71
68
|
|
|
72
|
-
*
|
|
69
|
+
* **`npx deploy-stack apply`**
|
|
70
|
+
Wraps Terraform execution in a beautiful, terminal-friendly UI. Automatically provisions your AWS infrastructure and outputs your live CDN and Load Balancer URLs.
|
|
71
|
+
|
|
72
|
+
* **`npx deploy-stack secrets push <file>`**
|
|
73
|
+
Securely encrypts your local environment variables (e.g., `.env.production`) into AWS Secrets Manager and maps them to your ECS container at runtime.
|
|
73
74
|
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
## 🛠️ Next Steps After Generation
|
|
77
|
-
|
|
78
|
-
1. **Provision Infrastructure:**
|
|
79
|
-
```bash
|
|
80
|
-
cd terraform
|
|
81
|
-
terraform init
|
|
82
|
-
terraform apply
|
|
83
|
-
```
|
|
84
|
-
2. **Push to GitHub:**
|
|
85
|
-
```bash
|
|
86
|
-
git add .
|
|
87
|
-
git commit -m "feat: infrastructure and deployment pipeline"
|
|
88
|
-
git push origin main
|
|
89
|
-
```
|
|
90
|
-
3. **Automated Deployment:** GitHub Actions securely authenticates via OIDC, builds your container, pushes to Amazon ECR, and executes a zero-downtime rolling deployment to ECS.
|
|
75
|
+
* **`npx deploy-stack doctor`**
|
|
76
|
+
Scans your local environment and generated files to ensure all required dependencies (Docker, Terraform, AWS CLI) are installed and configured correctly.
|
|
91
77
|
|
|
92
|
-
|
|
78
|
+
* **`npx deploy-stack destroy`**
|
|
79
|
+
Safely tears down your ECS cluster, Load Balancers, and networking resources to stop AWS billing. Includes an interactive prompt to optionally retain or delete your S3 remote state bucket.
|
|
93
80
|
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
`npx deploy-stack destroy`
|
|
81
|
+
* **`npx deploy-stack eject`**
|
|
82
|
+
Strips all `deploy-stack` metadata and management tags from your project, leaving behind pure, standard Terraform and GitHub Actions files. You retain 100% ownership.
|
|
97
83
|
|
|
98
84
|
---
|
|
99
85
|
|
|
100
86
|
## 📁 Generated File Structure
|
|
101
87
|
|
|
102
|
-
Running the CLI
|
|
88
|
+
Running the CLI seamlessly integrates a modular, DevSecOps-hardened architecture into your repository:
|
|
103
89
|
|
|
104
|
-
|
|
90
|
+
\`\`\`text
|
|
105
91
|
your-project/
|
|
106
92
|
├── Dockerfile # Multi-stage container preset
|
|
93
|
+
├── .dockerignore # Prevents secret leaks into container builds
|
|
94
|
+
├── .gitignore # Automatically updated to ignore tfstate and .bak files
|
|
107
95
|
├── .github/
|
|
108
96
|
│ └── workflows/
|
|
109
97
|
│ └── deploy.yml # Keyless OIDC CI/CD deployment pipeline
|
|
@@ -115,7 +103,7 @@ your-project/
|
|
|
115
103
|
├── secrets.tf # AWS Secrets Manager integration
|
|
116
104
|
├── backend.tf # S3 Remote State backend with native locking
|
|
117
105
|
└── secret_keys.json # Dynamic key map for injected environment variables
|
|
118
|
-
|
|
106
|
+
\`\`\`
|
|
119
107
|
|
|
120
108
|
---
|
|
121
109
|
|
|
@@ -146,8 +134,6 @@ npx deploy-stack --no-telemetry
|
|
|
146
134
|
|
|
147
135
|
## 🗺️ Roadmap
|
|
148
136
|
|
|
149
|
-
## 🗺️ Roadmap
|
|
150
|
-
|
|
151
137
|
### Phase 1–3: The Core Engine (Completed)
|
|
152
138
|
- [x] **Core MVP:** Interactive CLI, ECS Fargate + ALB generation, CI/CD, and Secrets sync.
|
|
153
139
|
- [x] **Production Readiness:** CloudFront CDN edge distribution, native S3 state locking, and secure OIDC integration.
|
|
@@ -160,9 +146,10 @@ npx deploy-stack --no-telemetry
|
|
|
160
146
|
- [x] **Zero Vendor Lock-In:** Explicit `npx deploy-stack eject` command to safely strip `ManagedBy` tags and CLI metadata, leaving behind pure IaC.
|
|
161
147
|
- [x] **Heavy Backend Monoliths:** Hardened, unprivileged container adapters for Go, Nuxt.js, Django, and Rails, complete with automated zero-trust RDS PostgreSQL provisioning.
|
|
162
148
|
|
|
163
|
-
### Phase 5: The Activation Engine (
|
|
149
|
+
### Phase 5: The Activation Engine (v0.10.0 - Current)
|
|
150
|
+
- [x] **Local Execution Wrapper:** Native `deploy-stack apply` command with terminal-optimized streaming to eliminate Terraform context switching.
|
|
151
|
+
- [ ] **Ecosystem Integrations:** Publishing official plugins to the Astro Integrations directory and backend framework ecosystems.
|
|
164
152
|
- [ ] **Ephemeral PR Previews:** Generating live preview URLs on every GitHub Pull Request, turning single-user tests into team-wide advertisements.
|
|
165
|
-
- [ ] **Next.js Image Optimization Handler:** A drop-in AWS Serverless handler (Lambda + CloudFront) to process images affordably, removing a massive Vercel lock-in hurdle.
|
|
166
153
|
- [ ] **GitHub Deployments UI Sync:** Wiring up the native GitHub "Environments" tab for instant visual validation that the CLI succeeded in the background.
|
|
167
154
|
|
|
168
155
|
### Phase 6: Workflow Interception (IDE, AI, & Local Bridges)
|
package/bin/cli.js
CHANGED
|
@@ -5,6 +5,7 @@ import { destroyStack } from '../src/commands/destroy.js';
|
|
|
5
5
|
import { runDoctor } from '../src/commands/doctor.js';
|
|
6
6
|
import { pushSecrets } from '../src/commands/secrets.js';
|
|
7
7
|
import { ejectStack } from '../src/commands/eject.js';
|
|
8
|
+
import { applyStack } from '../src/commands/apply.js';
|
|
8
9
|
|
|
9
10
|
// 1. Extract the telemetry flag and set the environment variable
|
|
10
11
|
const rawArgs = process.argv.slice(2);
|
|
@@ -22,6 +23,8 @@ if (args[0] === 'secrets' && args[1] === 'push') {
|
|
|
22
23
|
const envFile = args[2] || '.env';
|
|
23
24
|
const projectName = path.basename(process.cwd());
|
|
24
25
|
pushSecrets(envFile, projectName).catch(console.error);
|
|
26
|
+
} else if (args[0] === 'apply') {
|
|
27
|
+
applyStack().catch(console.error);
|
|
25
28
|
} else if (args[0] === 'doctor') {
|
|
26
29
|
runDoctor().catch(console.error);
|
|
27
30
|
} else if (args[0] === 'destroy') {
|
package/package.json
CHANGED
|
@@ -0,0 +1,133 @@
|
|
|
1
|
+
import { spawn } from 'child_process';
|
|
2
|
+
import path from 'path';
|
|
3
|
+
import fs from 'fs';
|
|
4
|
+
import { intro, outro, spinner, log, cancel } from '@clack/prompts';
|
|
5
|
+
import color from 'picocolors';
|
|
6
|
+
|
|
7
|
+
// Helper to run a command while piping the latest stdout line into a @clack spinner
|
|
8
|
+
function runTerraformCommand(args, cwd, spin, loadingPrefix) {
|
|
9
|
+
return new Promise((resolve, reject) => {
|
|
10
|
+
const child = spawn('terraform', args, { cwd });
|
|
11
|
+
let errorOutput = '';
|
|
12
|
+
let isDone = false;
|
|
13
|
+
|
|
14
|
+
child.stdout.on('data', (data) => {
|
|
15
|
+
if (isDone) return;
|
|
16
|
+
const lines = data.toString().split('\n').filter(line => line.trim() !== '');
|
|
17
|
+
if (lines.length > 0) {
|
|
18
|
+
const latestLine = lines[lines.length - 1].trim();
|
|
19
|
+
const display = latestLine.length > 120 ? latestLine.substring(0, 117) + '...' : latestLine;
|
|
20
|
+
spin.message(`${loadingPrefix} - ${color.dim(display)}`);
|
|
21
|
+
}
|
|
22
|
+
});
|
|
23
|
+
|
|
24
|
+
child.stderr.on('data', (data) => {
|
|
25
|
+
errorOutput += data.toString();
|
|
26
|
+
});
|
|
27
|
+
|
|
28
|
+
child.on('close', (code) => {
|
|
29
|
+
isDone = true;
|
|
30
|
+
if (code === 0) {
|
|
31
|
+
resolve();
|
|
32
|
+
} else {
|
|
33
|
+
reject(new Error(errorOutput || `Terraform exited with code ${code}`));
|
|
34
|
+
}
|
|
35
|
+
});
|
|
36
|
+
|
|
37
|
+
child.on('error', (err) => {
|
|
38
|
+
isDone = true;
|
|
39
|
+
reject(err);
|
|
40
|
+
});
|
|
41
|
+
});
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
// Helper to pull JSON outputs from Terraform
|
|
45
|
+
function getTerraformOutputs(cwd) {
|
|
46
|
+
return new Promise((resolve) => {
|
|
47
|
+
const child = spawn('terraform', ['output', '-json'], { cwd });
|
|
48
|
+
let outputData = '';
|
|
49
|
+
|
|
50
|
+
child.stdout.on('data', (data) => {
|
|
51
|
+
outputData += data.toString();
|
|
52
|
+
});
|
|
53
|
+
|
|
54
|
+
child.on('close', (code) => {
|
|
55
|
+
if (code === 0) {
|
|
56
|
+
try {
|
|
57
|
+
resolve(JSON.parse(outputData));
|
|
58
|
+
} catch {
|
|
59
|
+
resolve({});
|
|
60
|
+
}
|
|
61
|
+
} else {
|
|
62
|
+
resolve({});
|
|
63
|
+
}
|
|
64
|
+
});
|
|
65
|
+
|
|
66
|
+
child.on('error', () => {
|
|
67
|
+
resolve({});
|
|
68
|
+
});
|
|
69
|
+
});
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
export async function applyStack() {
|
|
73
|
+
intro(color.bgCyan(color.black(' deploy-stack apply ☁️ ')));
|
|
74
|
+
|
|
75
|
+
const targetDir = process.cwd();
|
|
76
|
+
const tfDir = path.join(targetDir, 'terraform');
|
|
77
|
+
|
|
78
|
+
// 1. Verify that the user is inside a project generated by deploy-stack
|
|
79
|
+
if (!fs.existsSync(tfDir) || !fs.existsSync(path.join(tfDir, 'main.tf'))) {
|
|
80
|
+
log.error(color.red('✖ No terraform directory found in current path.'));
|
|
81
|
+
log.message('Please run "npx deploy-stack" first to generate your infrastructure templates.');
|
|
82
|
+
process.exit(1);
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
const s = spinner();
|
|
86
|
+
|
|
87
|
+
try {
|
|
88
|
+
// 2. Run terraform init
|
|
89
|
+
s.start('Initializing Terraform plugins...');
|
|
90
|
+
await runTerraformCommand(['init', '-upgrade'], tfDir, s, 'Initializing');
|
|
91
|
+
log.success('Terraform initialized.');
|
|
92
|
+
|
|
93
|
+
// 3. Run terraform apply
|
|
94
|
+
s.start('Provisioning AWS infrastructure (this may take 3–5 minutes)...');
|
|
95
|
+
await runTerraformCommand(['apply', '-auto-approve'], tfDir, s, 'Provisioning');
|
|
96
|
+
s.stop('AWS infrastructure provisioned successfully!');
|
|
97
|
+
|
|
98
|
+
// 4. Extract and print the outputs
|
|
99
|
+
const outputs = await getTerraformOutputs(tfDir);
|
|
100
|
+
|
|
101
|
+
const cfUrl = outputs.cloudfront_url?.value;
|
|
102
|
+
const albUrl = outputs.alb_direct_url?.value;
|
|
103
|
+
|
|
104
|
+
let finalMessage = color.green('✅ Infrastructure is live!');
|
|
105
|
+
if (cfUrl) finalMessage += `\n 🌍 CDN: ${color.cyan(cfUrl)}`;
|
|
106
|
+
if (albUrl) finalMessage += `\n 🚦 ALB: ${color.gray(albUrl)}`;
|
|
107
|
+
|
|
108
|
+
outro(`${finalMessage}\n\n ${color.yellow('Push code to deploy your app and clear the 503 error:')}\n ${color.cyan('git add . && git commit -m "ci: infra" && git push origin main')}`);
|
|
109
|
+
|
|
110
|
+
process.exit(0);
|
|
111
|
+
|
|
112
|
+
} catch (error) {
|
|
113
|
+
s.stop(color.red('❌ Terraform apply failed.'));
|
|
114
|
+
|
|
115
|
+
const errString = error.message || "";
|
|
116
|
+
|
|
117
|
+
if (errString.includes('EntityAlreadyExists') && errString.includes('token.actions.githubusercontent.com')) {
|
|
118
|
+
log.error(color.red('GitHub OIDC Provider Conflict Detected'));
|
|
119
|
+
log.message('AWS only allows one GitHub Actions provider per account, and you already have one configured.');
|
|
120
|
+
log.message('');
|
|
121
|
+
log.message(`${color.bold('How to fix this:')}`);
|
|
122
|
+
log.message(`1. Open ${color.cyan('terraform/oidc.tf')}`);
|
|
123
|
+
log.message(`2. Change ${color.green('create_oidc_provider = true')} to ${color.green('create_oidc_provider = false')}`);
|
|
124
|
+
log.message(`3. Run ${color.cyan('npx deploy-stack apply')} again.`);
|
|
125
|
+
} else {
|
|
126
|
+
// Generic fallback for unknown errors
|
|
127
|
+
log.error(color.red(errString));
|
|
128
|
+
log.message(`${color.bold('To debug manually, navigate to your terraform folder:')}`);
|
|
129
|
+
log.message(color.cyan('cd terraform && terraform apply'));
|
|
130
|
+
}
|
|
131
|
+
process.exit(1);
|
|
132
|
+
}
|
|
133
|
+
}
|
package/src/commands/destroy.js
CHANGED
|
@@ -2,11 +2,45 @@ import fsSync from 'fs';
|
|
|
2
2
|
import path from 'path';
|
|
3
3
|
import { intro, outro, confirm, spinner, cancel } from '@clack/prompts';
|
|
4
4
|
import color from 'picocolors';
|
|
5
|
-
import { execSync } from 'child_process';
|
|
5
|
+
import { execSync, spawn } from 'child_process';
|
|
6
6
|
import { teardownStateBucket } from '../utils/aws.js';
|
|
7
7
|
import { checkDependency } from '../utils/system.js';
|
|
8
8
|
import { trackEvent, flushTelemetry } from '../core/telemetry.js';
|
|
9
9
|
|
|
10
|
+
// Helper to run a command while piping the latest stdout line into a @clack spinner
|
|
11
|
+
function runTerraformCommand(args, cwd, spin, loadingPrefix) {
|
|
12
|
+
return new Promise((resolve, reject) => {
|
|
13
|
+
const child = spawn('terraform', args, { cwd });
|
|
14
|
+
let errorOutput = '';
|
|
15
|
+
let isDone = false;
|
|
16
|
+
|
|
17
|
+
child.stdout.on('data', (data) => {
|
|
18
|
+
if (isDone) return;
|
|
19
|
+
const lines = data.toString().split('\n').filter(line => line.trim() !== '');
|
|
20
|
+
if (lines.length > 0) {
|
|
21
|
+
const latestLine = lines[lines.length - 1].trim();
|
|
22
|
+
const display = latestLine.length > 120 ? latestLine.substring(0, 117) + '...' : latestLine;
|
|
23
|
+
spin.message(`${loadingPrefix} - ${color.dim(display)}`);
|
|
24
|
+
}
|
|
25
|
+
});
|
|
26
|
+
|
|
27
|
+
child.stderr.on('data', (data) => {
|
|
28
|
+
errorOutput += data.toString();
|
|
29
|
+
});
|
|
30
|
+
|
|
31
|
+
child.on('close', (code) => {
|
|
32
|
+
isDone = true;
|
|
33
|
+
if (code === 0) resolve();
|
|
34
|
+
else reject(new Error(errorOutput || `Terraform exited with code ${code}`));
|
|
35
|
+
});
|
|
36
|
+
|
|
37
|
+
child.on('error', (err) => {
|
|
38
|
+
isDone = true;
|
|
39
|
+
reject(err);
|
|
40
|
+
});
|
|
41
|
+
});
|
|
42
|
+
}
|
|
43
|
+
|
|
10
44
|
export async function destroyStack() {
|
|
11
45
|
intro(color.bgRed(color.white(' deploy-stack destroy 🗑️ ')));
|
|
12
46
|
|
|
@@ -46,23 +80,34 @@ export async function destroyStack() {
|
|
|
46
80
|
const region = regionMatch ? regionMatch[1] : 'us-east-1';
|
|
47
81
|
|
|
48
82
|
// 2. Execute Terraform Destroy
|
|
49
|
-
|
|
83
|
+
s.start('Destroying AWS compute resources (this takes a few minutes)...');
|
|
50
84
|
try {
|
|
51
|
-
|
|
85
|
+
await runTerraformCommand(['destroy', '-auto-approve'], tfDirPath, s, 'Destroying');
|
|
86
|
+
s.stop('AWS compute resources destroyed.');
|
|
52
87
|
} catch (error) {
|
|
53
|
-
|
|
88
|
+
s.stop(color.red('❌ Terraform destroy failed.'));
|
|
89
|
+
console.error(color.red(error.message));
|
|
54
90
|
process.exit(1);
|
|
55
91
|
}
|
|
56
92
|
|
|
57
93
|
// 3. Clean up the S3 State Bucket
|
|
58
94
|
if (bucketName) {
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
95
|
+
const deleteS3Bucket = await confirm({
|
|
96
|
+
message: color.yellow(`AWS compute resources destroyed. Do you also want to permanently delete the S3 state bucket?\n (Select 'No' if you plan to run 'deploy-stack apply' later to spin this back up.)`),
|
|
97
|
+
initialValue: false,
|
|
98
|
+
});
|
|
99
|
+
|
|
100
|
+
if (deleteS3Bucket && typeof deleteS3Bucket !== 'symbol') {
|
|
101
|
+
s.start(`Emptying and deleting S3 state bucket: ${bucketName}...`);
|
|
102
|
+
try {
|
|
103
|
+
await teardownStateBucket(region, bucketName);
|
|
104
|
+
s.stop(`S3 bucket ${bucketName} successfully deleted.`);
|
|
105
|
+
} catch (error) {
|
|
106
|
+
s.stop(`❌ Failed to delete S3 bucket. You may need to delete it manually in the AWS Console.`);
|
|
107
|
+
console.error(color.red(`AWS Error: ${error.message}`));
|
|
108
|
+
}
|
|
109
|
+
} else {
|
|
110
|
+
console.log(color.cyan(`\n S3 bucket retained. You can run 'npx deploy-stack apply' anytime to restore your infrastructure.`));
|
|
66
111
|
}
|
|
67
112
|
}
|
|
68
113
|
|
package/src/commands/init.js
CHANGED
|
@@ -313,36 +313,20 @@ export async function mainStack() {
|
|
|
313
313
|
const isGitInitialized = fsSync.existsSync(path.join(targetDir, '.git'));
|
|
314
314
|
|
|
315
315
|
const cdStep = projectName === '.' ? '' : `1. cd ${projectName}\n `;
|
|
316
|
-
const
|
|
317
|
-
const gitStepNum = projectName === '.' ? '2' : '3';
|
|
316
|
+
const applyStep = `${cdStep}npx deploy-stack apply`;
|
|
318
317
|
|
|
319
318
|
const gitInstructions = isGitInitialized
|
|
320
|
-
? `git add
|
|
321
|
-
: `git init
|
|
319
|
+
? `git add . && git commit -m "chore: add AWS infrastructure and CI/CD" && git push`
|
|
320
|
+
: `git init && git add . && git commit -m "chore: add AWS infrastructure and CI/CD" && git branch -M ${deployBranch} && git remote add origin https://github.com/your-username/your-repo.git && git push -u origin ${deployBranch}`;
|
|
322
321
|
|
|
323
|
-
|
|
324
|
-
${
|
|
322
|
+
const outroMessage = `${color.green('✅ Templates generated!')} ${color.blue('🛡️ DevSecOps scanning enabled.')}
|
|
323
|
+
${frameworkWarnings ? `\n ${frameworkWarnings}` : ''}
|
|
324
|
+
${color.yellow('Next steps:')}
|
|
325
|
+
1. ${color.cyan(applyStep)}
|
|
326
|
+
2. ${color.cyan(gitInstructions)}
|
|
327
|
+
${color.magenta('🚀 Need help?')} ${color.underline('https://calendly.com/anton-codes-iac/15min')}`;
|
|
325
328
|
|
|
326
|
-
|
|
327
|
-
Automated Trivy vulnerability scanning for your Docker container
|
|
328
|
-
and Terraform has been added to your CI/CD pipeline.
|
|
329
|
-
Check the 'Summary' page of your GitHub Actions runs for reports.
|
|
330
|
-
|
|
331
|
-
${frameworkWarnings}
|
|
332
|
-
|
|
333
|
-
Next steps:
|
|
334
|
-
${cdStep}${deployStepNum}. Deploy infrastructure:
|
|
335
|
-
cd terraform && terraform init && terraform apply
|
|
336
|
-
|
|
337
|
-
${gitStepNum}. Push to GitHub to trigger CI/CD:
|
|
338
|
-
cd ..
|
|
339
|
-
${gitInstructions}
|
|
340
|
-
|
|
341
|
-
${color.cyan('Once deployed, Terraform will output your new https://*.cloudfront.net URL.')}
|
|
342
|
-
|
|
343
|
-
${color.magenta('🚀 Infrastructure ready! Need help or have feedback? Grab 15 mins with Anton:')}
|
|
344
|
-
${color.underline('https://calendly.com/anton-codes-iac/15min')}
|
|
345
|
-
`);
|
|
329
|
+
outro(outroMessage);
|
|
346
330
|
|
|
347
331
|
// 13.Ensure all analytics are sent before the CLI terminates
|
|
348
332
|
await flushTelemetry();
|
package/src/utils/generator.js
CHANGED
|
@@ -152,13 +152,17 @@ Thumbs.db
|
|
|
152
152
|
const railsCiPath = path.join(targetDir, '.github', 'workflows', 'ci.yml');
|
|
153
153
|
const dependabotPath = path.join(targetDir, '.github', 'dependabot.yml');
|
|
154
154
|
|
|
155
|
-
if (
|
|
156
|
-
fsSync.
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
fsSync.
|
|
161
|
-
|
|
155
|
+
if (config.DISABLE_DEFAULT_CI) {
|
|
156
|
+
if (fsSync.existsSync(railsCiPath)) {
|
|
157
|
+
fsSync.renameSync(railsCiPath, `${railsCiPath}.bak`);
|
|
158
|
+
console.log(' ✅ Safely disabled default Rails ci.yml (renamed to .bak).');
|
|
159
|
+
}
|
|
160
|
+
if (fsSync.existsSync(dependabotPath)) {
|
|
161
|
+
fsSync.renameSync(dependabotPath, `${dependabotPath}.bak`);
|
|
162
|
+
console.log(' ✅ Safely disabled default dependabot.yml (renamed to .bak).');
|
|
163
|
+
}
|
|
164
|
+
} else if (fsSync.existsSync(railsCiPath) || fsSync.existsSync(dependabotPath)) {
|
|
165
|
+
console.log(' ⚠️ You chose to keep your existing GitHub Actions. Please note that default tests may fail until you configure a database service in your CI runner.');
|
|
162
166
|
}
|
|
163
167
|
}
|
|
164
168
|
}
|