https://github.com/anilonayy/go-lambda-example
A simple guide to create AWS Lambda function with Golang.
https://github.com/anilonayy/go-lambda-example
aws aws-lambda golang serverless-application-model terraform
Last synced: about 1 month ago
JSON representation
A simple guide to create AWS Lambda function with Golang.
- Host: GitHub
- URL: https://github.com/anilonayy/go-lambda-example
- Owner: anilonayy
- Created: 2024-12-21T12:10:43.000Z (5 months ago)
- Default Branch: master
- Last Pushed: 2024-12-22T12:41:24.000Z (5 months ago)
- Last Synced: 2025-02-14T19:51:51.804Z (3 months ago)
- Topics: aws, aws-lambda, golang, serverless-application-model, terraform
- Language: Go
- Homepage:
- Size: 2.95 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Golang Lambda Example
This is a simple example of how to create a scheduled lambda function using different methods.
After the lambda function is created, the triggering history of the lambda can be examined from the Log Group that matches the function name via CloudWatch.
## Methods
- [Hands-On (AWS CLI)](./hands-on)
- [AWS SAM](./sam)
- [Terraform](./terraform)```tree
├── .gitignore
├── README.md
├── events
│ └── event.json
├── hands-on
│ ├── README.md
│ ├── go.mod
│ ├── go.sum
│ ├── main.go
│ ├── presentation
│ │ └── test.png
│ └── trust-policy.json
├── sam
│ ├── Makefile
│ ├── README.md
│ ├── hello-world
│ │ ├── go.mod
│ │ ├── go.sum
│ │ ├── main.go
│ │ └── main_test.go
│ ├── samconfig.toml
│ └── template.yaml
└── terraform
├── README.md
├── go.mod
├── go.sum
├── lambda.zip
├── main.go
└── main.tf
```## Sample Monitoring
