Skip to content

Commit 692fe3f

Browse files
committed
testing pipeline
1 parent b10209f commit 692fe3f

3 files changed

Lines changed: 3 additions & 1 deletion

File tree

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -109,5 +109,6 @@ serverless/
109109
- **Amazon RDS (SQL Server)**: A fully managed relational database service used to store the application’s data. The SQL Server instance is provisioned with standard compute (`db.t3.medium`) and includes automated backups, monitoring, and maintenance. It is easily upgradable for future performance or availability requirements.
110110
- **Terraform**: An Infrastructure-as-Code (IaC) tool used to define, provision, and manage AWS resources declaratively. Terraform ensures that the infrastructure is reproducible, version-controlled, and can be modified or extended with minimal effort.
111111
- **GitHub Actions**: Provides the CI/CD pipeline to automatically build, test, and deploy changes to the Node.js WebAPI. When code is pushed to the main branch, the workflow packages the Lambda function, runs tests, and deploys the code to AWS, ensuring fast and reliable updates.
112+
- **IAM Roles**:
112113

113114

infra/modules/database/main.tf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,3 +67,4 @@ resource "aws_db_instance" "main" {
6767

6868

6969

70+

src/handler/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ exports.handler = async (event) => {
2121
statusCode: 200,
2222
headers: { "Content-Type": "application/json" },
2323
body: JSON.stringify({
24-
message: "Hello from Node.js Lambda WebAPI! (testing pipeline)",
24+
message: "Hello from Node.js Lambda WebAPI! (testing)",
2525
time: new Date().toISOString()
2626
})
2727
};

0 commit comments

Comments
 (0)