https://github.com/gurram2001/azure-devops-assignment
This project demonstrates a implementation for a .NET 8 web service deployed on Azure using Terraform and Azure DevOps pipelines. It covers the provisioning of an Azure SQL Database, handling a high request rate of 1000 RPS using Azure App Service, and supporting integrations through a modular web API. Leveraged fault tolerance, HA of Azure.
https://github.com/gurram2001/azure-devops-assignment
azure azure-devops azure-sql-database terraform
Last synced: 18 days ago
JSON representation
This project demonstrates a implementation for a .NET 8 web service deployed on Azure using Terraform and Azure DevOps pipelines. It covers the provisioning of an Azure SQL Database, handling a high request rate of 1000 RPS using Azure App Service, and supporting integrations through a modular web API. Leveraged fault tolerance, HA of Azure.
- Host: GitHub
- URL: https://github.com/gurram2001/azure-devops-assignment
- Owner: Gurram2001
- Created: 2025-04-15T12:08:40.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2025-04-15T13:38:05.000Z (10 months ago)
- Last Synced: 2025-06-19T06:38:44.790Z (8 months ago)
- Topics: azure, azure-devops, azure-sql-database, terraform
- Language: HCL
- Homepage:
- Size: 6.84 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Azure DevOps Engineer Assignment
This project demonstrates a full-stack cloud-native implementation for a .NET 8 web service deployed on Azure using Terraform and Azure DevOps pipelines.
---
### ✅ Requirements Covered
- **SQL Database**: Provisioned using Azure SQL via Terraform.
- **RPS of 1000/s**: Handled by Azure App Service (scalable tier).
- **External Integration Ready**: Web API structure supports service integration.
- **Secure, Highly Available, Fault Tolerant**: Azure infrastructure provides these by default. Code and pipeline are modular and resilient.
---
### 🏗️ Architecture Overview
```
User → Azure App Service (.NET API) → Azure SQL DB
↓
Azure DevOps Pipelines (CI/CD)
↓
Terraform (Infra as Code)
```
(Refer to `diagrams/architecture.png` for a visual layout.)
---
### 📁 Repository Structure
```
infra/ → Terraform code for infrastructure provisioning
src/ → .NET 8 Web API project
pipelines/ → Azure Pipelines YAML files (CI/CD)
diagrams/ → Architecture diagrams
```
---
### 🚀 How to Run
#### 1. Provision Infrastructure
```bash
cd infra
terraform init
terraform apply -auto-approve
```
#### 2. Run API Locally
```bash
cd src/WebApiService
dotnet run
```
#### 3. Trigger CI/CD in Azure DevOps
- Commit code to `main` branch
- CI builds and publishes artifact
- CD applies infrastructure and deploys the app
---
### 🔐 Security Notes
- Use Azure Key Vault for managing secrets in production
- Enable Managed Identity and Firewall for tighter control
---
### 📫 Contact
For any queries, please feel free to reach out during the interview.