Coder Social home page Coder Social logo

justive / zet-board Goto Github PK

View Code? Open in Web Editor NEW

This project forked from jaeminst/zet-board

0.0 0.0 0.0 3.48 MB

ZeT Board is a desktop app for AWS tunneling. In this app, ZeT stands for implementing zero trust through role-based authentication in AWS.

License: MIT License

JavaScript 1.73% TypeScript 97.07% CSS 1.20%

zet-board's Introduction

ZeT Board

ZeT Board is a desktop application for AWS tunneling, aiming to implement Zero Trust through role-based authentication in AWS.

Desktop Preview

ZeT Board Screenshot

Key Features

  • Zero Trust Security: Provides secure access to AWS resources through role-based authentication.
  • Easy Setup: User-friendly interface for straightforward AWS tunneling configuration.
  • Multi AWS Services Support: Supports integration with multiple AWS services for efficient management.

Getting Started

Prerequisites

Before using ZeT Board, make sure you have the following installed:

  • Node.js (version 20 or higher)
  • npm (version 10 or higher)
  • session-manager-plugin (version 1.2.536.0 or higher) AWS Docs
  • An AWS access key and a configured AWS role with permissions for accessing the necessary resources.
    • resource "aws_iam_role" "Administrator" {
        name = "Administrator"
        assume_role_policy = jsonencode({
          Version = "2012-10-17"
          Statement = [
            {
              Effect = "Allow"
              Principal = {
                AWS = [
                  "arn:aws:iam::${local.account_id}:user/foo",
                  # ...More user
                ]
              }
              Action = "sts:AssumeRole"
            },
            {
              Effect = "Deny"
              Principal = {
                AWS = ["*"]
              }
              Action = "sts:AssumeRole"
              Condition = {
                NotIpAddress = {
                  "aws:SourceIp" = concat(local.office_lan, local.office_vpn)
                }
              }
            }
          ]
        })
      
        managed_policy_arns = [
          "arn:aws:iam::aws:policy/AdministratorAccess",
        ]
      }
  • A bastion host configured for access via AWS Systems Manager (SSM) session start, to facilitate secure access and management.

Installation

  1. Clone the ZeT Board repository from GitHub:
git clone https://github.com/Jaeminst/zet-board.git
  1. Navigate to the application directory and install the required packages:
cd zet-board
npm install
  1. Start the application in development mode:
npm run dev

This command runs the application in development mode. For production, you may need to build or package the application, which can be done as described in the packaging section below.

Releasing the Application

When you want to create a new release, follow these steps:

  1. Update the version in your project's package.json file (e.g. 1.2.3)
  2. Commit that change (git commit -am v1.2.3)
  3. Tag your commit (git tag v1.2.3). Make sure your tag name's format is v*.*.*. Your workflow will use this tag to detect when to create a release
  4. Push your changes to GitHub (git push && git push --tags)

After building successfully, the action will publish your release artifacts. By default, a new release draft will be created on GitHub with download links for your app. If you want to change this behavior, have a look at the electron-builder docs.

Usage

[This section explains the basic usage of the application, such as how to log in, change settings, and perform specific tasks.]

Contributing

Contributions to the ZeT Board project are welcome! If you would like to contribute, please follow these steps:

  1. Fork the project.
  2. Create your feature branch (git checkout -b feature/AmazingFeature).
  3. Commit your changes (git commit -m 'Add some AmazingFeature').
  4. Push to the branch (git push origin feature/AmazingFeature).
  5. Open a pull request.

License

This project is distributed under the MIT License. See the LICENSE file for more details.

Contact

If you have any questions or suggestions about ZeT Board, please open an issue in the issue tracker.

zet-board's People

Contributors

jaeminst avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.