Skip to content

This repository contains a serverless application written in Golang, deployed on AWS. The application leverages AWS Lambda for serverless compute, DynamoDB for the database, and API Gateway for HTTP Endpoints. The architecture uses Amazon Linux 2 on amd64 architecture for the Lambda runtime.

License

Notifications You must be signed in to change notification settings

ARUP-G/Serverless-with-Golang

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Serverless with Golang

This serverless application (REST API) is built using Golang to leverage its efficiency and concurrency features, providing a highly scalable and reliable backend service. It follows the serverless architecture paradigm by utilizing AWS Lambda for compute, Amazon DynamoDB for persistent data storage, and Amazon API Gateway for request handling and routing.

This architecture ensures cost-effectiveness by eliminating the need for dedicated servers while maintaining scalability and high availability, making it ideal for modern cloud-native applications.


Features

  • Serverless Architecture: Powered by AWS Lambda and API Gateway.
  • Database: DynamoDB for efficient, scalable storage.
  • Written in Go: Leveraging Go's speed and efficiency.

Prerequisites

Ensure you have the following installed:

  1. Go (Golang):

Project Structure

Serverless-with-Golang/
├───build
|   └───deployment.zip
├───cmd
|   ├───main.go
│   └───bootstrap
├───pkg
│   ├───handlers
│   ├───user
│   └───validators
├── README.md
├── go.sum
└── go.mod

Steps to Deploy the Application

  1. Clone the Repository

    git clone https://github.com/ARUP-G/Serverless-with-Golang.git
    cd Serverless-with-Golang
  2. Build the Go Application

    # For Linux user
    GOOS=linux GOARCH=amd64 go build -o bootstrap cmd/main.go
    #For windows user
    $env:GOOS="linux"; $env:GOARCH="amd64"; go build -o bootstarp cmd/main.go
    # This builds the Go application compatible with AWS Lambda's environment.
  3. Setup Using AWS Console

    1. Create a DynamoDB Table

      • Go to the DynamoDB Console: DynamoDB Console.
      • Click Create table.
      • Provide the following details:
        • Table Name: go-serverless-tb (or a name of your choice, change it in the main.go)
        • Partition Key: email (String)
      • Select On-demand capacity mode (Pay-per-request) for flexibility.
      • Click Create table. DBTAble
    2. Create a Lambda Function

      • Go to the Lambda Console: Lambda Console.
      • Click Create function.
      • Select Author from scratch.
      • Provide the following details:
        • Function name: go-serverless-app
        • Runtime: Amazon Linux
        • Architecture: x86_64
      • Under Permissions, create a new role with basic Lambda permissions.
      • Click Create function. Lamda func
    3. Upload the Code

      • Scroll to the Code source section.
      • Click Upload from and select .zip file.
      • Prepare your .zip file by building your Go application:
        zip deployment.zip bootstrap
      • Upload the deployment.zip file and click Save. Deployment
    4. Add Environment Variables (Optional)

      • Scroll to the Configuration tab and click Environment variables.
      • Add variables such as TABLE_NAME for your DynamoDB table name.
    5. Grant Lambda Access to DynamoDB

      • In the Lambda Console, go to the Configuration tab.
      • Click Permissions and then click the role name under Execution role.
      • Attach the AmazonDynamoDBFullAccess policy:
        • Click Add permissionsAttach policies.
        • Search for AmazonDynamoDBFullAccess and click Attach policy.
    6. Create an API Gateway

      • Go to the API Gateway Console: API Gateway Console.
      • Click Create API and choose REST API.
      • Select Build.
      • Under Configure routes, add the following route:
        • Method: ANY
        • Resource path: /items/{proxy+}
      • Select Integration and choose Lambda function.
      • Enter your Lambda function name (go-serverless-app).
      • Click Create.
      • Deploy the API:
        • Click Deployments under your API name.
        • Select Create and provide a stage name (e.g., prod).
        • Click Deploy. api-gateway
  4. Test the Setup

    1. Test via API Gateway

      • Copy the Invoke URL from the Stages section of your API Gateway.
      • Test the endpoint using curl or Postman:
        curl -X POST -H "Content-Type: application/json" -d '{"email": "test@example.com","firstName": "Kernel", "lastName": "Dev"}' https://<API_ID>.execute-api.<REGION>.amazonaws.com/prod/items
    2. Check DynamoDB

      • Go to the DynamoDB Console → Tables → Your Table.
      • Click Explore table items to verify the data.
  5. Cleanup Resources

    To avoid unnecessary charges, delete the resources when they are no longer needed:

    • Lambda Function:
      • Go to the Lambda Console, select the function, and click Delete.
    • DynamoDB Table:
      • Go to the DynamoDB Console, select the table, and click Delete table.
    • API Gateway:
      • Go to the API Gateway Console, select the API, and click Delete API.

🛠️ Contributing

Contributions are welcome! Please submit a PR or open an issue.

📜 License

This project is licensed under the MIT License.

About

This repository contains a serverless application written in Golang, deployed on AWS. The application leverages AWS Lambda for serverless compute, DynamoDB for the database, and API Gateway for HTTP Endpoints. The architecture uses Amazon Linux 2 on amd64 architecture for the Lambda runtime.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages