[PR #51] [MERGED] Security groups #335

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/51
Author: @manikanta9176
Created: 4/14/2025
Status: Merged
Merged: 4/14/2025
Merged by: @manikanta9176

Base: mainHead: security-groups


📝 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

35 files changed (+4533 additions, -309 deletions)

View changed files

📝 package.json (+2 -1)
📝 pnpm-lock.yaml (+137 -74)
📝 src/actions/cloud/aws/index.ts (+79 -64)
📝 src/actions/cloud/aws/validator.ts (+34 -0)
src/actions/securityGroups/index.ts (+176 -0)
src/actions/securityGroups/validator.ts (+160 -0)
📝 src/actions/sshkeys/index.ts (+3 -3)
📝 src/app/(frontend)/(dashboard)/layout.client.tsx (+2 -2)
src/app/(frontend)/(dashboard)/settings/security/page.tsx (+203 -0)
src/app/(frontend)/(dashboard)/settings/security/sync.ts (+84 -0)
📝 src/app/(frontend)/(dashboard)/settings/servers/page.tsx (+6 -1)
src/app/(frontend)/(dashboard)/settings/ssh-keys/page.tsx (+0 -38)
📝 src/app/(frontend)/onboarding/ssh-keys/page.tsx (+2 -2)
src/components/security/CreateSSHKey.tsx (+66 -0)
📝 src/components/security/CreateSSHKeyForm.tsx (+4 -60)
src/components/security/CreateSecurityGroup.tsx (+154 -0)
src/components/security/CreateSecurityGroupForm.tsx (+1281 -0)
📝 src/components/security/SSHKeysList.tsx (+2 -2)
📝 src/components/security/SSHLoading.tsx (+0 -0)
src/components/security/SecurityGroupsList.tsx (+172 -0)

...and 15 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/51 **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-groups` --- ### 📝 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 **35 files changed** (+4533 additions, -309 deletions) <details> <summary>View changed files</summary> 📝 `package.json` (+2 -1) 📝 `pnpm-lock.yaml` (+137 -74) 📝 `src/actions/cloud/aws/index.ts` (+79 -64) 📝 `src/actions/cloud/aws/validator.ts` (+34 -0) ➕ `src/actions/securityGroups/index.ts` (+176 -0) ➕ `src/actions/securityGroups/validator.ts` (+160 -0) 📝 `src/actions/sshkeys/index.ts` (+3 -3) 📝 `src/app/(frontend)/(dashboard)/layout.client.tsx` (+2 -2) ➕ `src/app/(frontend)/(dashboard)/settings/security/page.tsx` (+203 -0) ➕ `src/app/(frontend)/(dashboard)/settings/security/sync.ts` (+84 -0) 📝 `src/app/(frontend)/(dashboard)/settings/servers/page.tsx` (+6 -1) ➖ `src/app/(frontend)/(dashboard)/settings/ssh-keys/page.tsx` (+0 -38) 📝 `src/app/(frontend)/onboarding/ssh-keys/page.tsx` (+2 -2) ➕ `src/components/security/CreateSSHKey.tsx` (+66 -0) 📝 `src/components/security/CreateSSHKeyForm.tsx` (+4 -60) ➕ `src/components/security/CreateSecurityGroup.tsx` (+154 -0) ➕ `src/components/security/CreateSecurityGroupForm.tsx` (+1281 -0) 📝 `src/components/security/SSHKeysList.tsx` (+2 -2) 📝 `src/components/security/SSHLoading.tsx` (+0 -0) ➕ `src/components/security/SecurityGroupsList.tsx` (+172 -0) _...and 15 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#335
No description provided.