[PR #50] [MERGED] Security group #334

Closed
opened 2026-03-03 11:29:26 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/dflow-sh/dflow/pull/50
Author: @manikanta9176
Created: 4/14/2025
Status: Merged
Merged: 4/14/2025
Merged by: @manikanta9176

Base: mainHead: security-group


📝 Commits (10+)

  • 42f7e86 chore: added security groups collection
  • ab32ab4 chore: attached security groups to servers
  • 5c58c6a chore: security group compenents
  • 15611a4 chore: changes folders and removed sshkeys tab
  • 4551fbd chore: updated ui for the security tab
  • 3147b30 chore: updated the not found for ssh and security group
  • aac1247 chore: updated the collection
  • f03347b chore: server-onboarding-ui-fixes, add provider type to server
  • 7686a6f fix: onboarding context-issue
  • 1b8e35e fix: condition context issue

📊 Changes

79 files changed (+4865 additions, -772 deletions)

View changed files

📝 .env.example (+1 -1)
📝 .vscode/settings.json (+10 -1)
📝 OVERVIEW.md (+1 -1)
📝 README.md (+7 -2)
📝 package.json (+3 -2)
📝 pnpm-lock.yaml (+141 -78)
public/images/dflow-no-bg.png (+0 -0)
public/images/favicon.ico (+0 -0)
📝 src/actions/cloud/aws/index.ts (+80 -65)
📝 src/actions/cloud/aws/validator.ts (+34 -0)
src/actions/securityGroups/index.ts (+176 -0)
src/actions/securityGroups/validator.ts (+160 -0)
📝 src/actions/server/index.ts (+2 -0)
📝 src/actions/sshkeys/index.ts (+4 -4)
📝 src/app/(frontend)/(dashboard)/dashboard/project/[id]/service/[serviceId]/layout.client.tsx (+2 -2)
📝 src/app/(frontend)/(dashboard)/dashboard/project/[id]/service/[serviceId]/layout.tsx (+44 -1)
📝 src/app/(frontend)/(dashboard)/docs/layout.tsx (+4 -1)
📝 src/app/(frontend)/(dashboard)/layout.client.tsx (+4 -4)
📝 src/app/(frontend)/(dashboard)/layout.tsx (+24 -7)
src/app/(frontend)/(dashboard)/settings/security/page.tsx (+203 -0)

...and 59 more files

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/dflow-sh/dflow/pull/50 **Author:** [@manikanta9176](https://github.com/manikanta9176) **Created:** 4/14/2025 **Status:** ✅ Merged **Merged:** 4/14/2025 **Merged by:** [@manikanta9176](https://github.com/manikanta9176) **Base:** `main` ← **Head:** `security-group` --- ### 📝 Commits (10+) - [`42f7e86`](https://github.com/dflow-sh/dflow/commit/42f7e867d825a79f1562239f2277886b13c5ebdd) chore: added security groups collection - [`ab32ab4`](https://github.com/dflow-sh/dflow/commit/ab32ab42177b98595da2041dcfe02b7a8acbdebc) chore: attached security groups to servers - [`5c58c6a`](https://github.com/dflow-sh/dflow/commit/5c58c6a88de77e87836520b4fd164ccad79e9379) chore: security group compenents - [`15611a4`](https://github.com/dflow-sh/dflow/commit/15611a40a24e778489a40708dc36ab5f0d6143a9) chore: changes folders and removed sshkeys tab - [`4551fbd`](https://github.com/dflow-sh/dflow/commit/4551fbda162feb7ce4702e7c7de2d83c575a5786) chore: updated ui for the security tab - [`3147b30`](https://github.com/dflow-sh/dflow/commit/3147b300bf163ebf81cba08bb336429777d1cb77) chore: updated the not found for ssh and security group - [`aac1247`](https://github.com/dflow-sh/dflow/commit/aac1247fa0e9be5d2b8f21f6d7cd4c4f5027a66d) chore: updated the collection - [`f03347b`](https://github.com/dflow-sh/dflow/commit/f03347b8546498dcc702a04907be59385d7ffd23) chore: server-onboarding-ui-fixes, add provider type to server - [`7686a6f`](https://github.com/dflow-sh/dflow/commit/7686a6f253ef86bf3d22c340b257237122bed715) fix: onboarding context-issue - [`1b8e35e`](https://github.com/dflow-sh/dflow/commit/1b8e35ef088ff6381dcc752abb8a8456a2b03cb8) fix: condition context issue ### 📊 Changes **79 files changed** (+4865 additions, -772 deletions) <details> <summary>View changed files</summary> 📝 `.env.example` (+1 -1) 📝 `.vscode/settings.json` (+10 -1) 📝 `OVERVIEW.md` (+1 -1) 📝 `README.md` (+7 -2) 📝 `package.json` (+3 -2) 📝 `pnpm-lock.yaml` (+141 -78) ➕ `public/images/dflow-no-bg.png` (+0 -0) ➕ `public/images/favicon.ico` (+0 -0) 📝 `src/actions/cloud/aws/index.ts` (+80 -65) 📝 `src/actions/cloud/aws/validator.ts` (+34 -0) ➕ `src/actions/securityGroups/index.ts` (+176 -0) ➕ `src/actions/securityGroups/validator.ts` (+160 -0) 📝 `src/actions/server/index.ts` (+2 -0) 📝 `src/actions/sshkeys/index.ts` (+4 -4) 📝 `src/app/(frontend)/(dashboard)/dashboard/project/[id]/service/[serviceId]/layout.client.tsx` (+2 -2) 📝 `src/app/(frontend)/(dashboard)/dashboard/project/[id]/service/[serviceId]/layout.tsx` (+44 -1) 📝 `src/app/(frontend)/(dashboard)/docs/layout.tsx` (+4 -1) 📝 `src/app/(frontend)/(dashboard)/layout.client.tsx` (+4 -4) 📝 `src/app/(frontend)/(dashboard)/layout.tsx` (+24 -7) ➕ `src/app/(frontend)/(dashboard)/settings/security/page.tsx` (+203 -0) _...and 59 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-03 11:29:26 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/dflow#334
No description provided.