RJRitesh Jhaggarinjhaggar.hashnode.dev·Jun 28, 2024 · 2 min readLaunching AWS S3 using Terraform with Azure PipelinesLaunching AWS S3 using Terraform with Azure Pipelines Here's a breakdown of how to launch AWS S3 using Terraform with Azure Pipelines: 1. Prerequisites: Azure DevOps Account: You'll need an Azure DevOps account to create and manage pipelines. AWS A...00
RJRitesh Jhaggarinjhaggar.hashnode.dev·Jun 28, 2024 · 1 min readCreate dynamic S3 bucket using Azure Pipeline in AWS## Step-1: Download AWS CLI plugin from Marketplace in Azure DevOps Portal ``` ``` ## Step-2: In AWS Portal, Create either a role or Secret key ``` ``` ## Step-3: Use the following yml file and apply it to azure pipeline ``` trigger: - none pool...00
RJRitesh Jhaggarinjhaggar.hashnode.dev·Jun 28, 2024 · 1 min read.net docker applicationgithub :- https://github.com/daaops/docker_dotnet_application Dockerfile FROM mcr.microsoft.com/dotnet/core/aspnet:3.1-buster-slim AS base WORKDIR /app EXPOSE 80 FROM mcr.microsoft.com/dotnet/core/sdk:3.1-buster AS build WORKDIR /src COPY ["Docker...01I
RJRitesh Jhaggarinjhaggar.hashnode.dev·Jun 1, 2024 · 1 min readBuilding an end-to-end CI/CD pipelineInitial environment setup: GitHub Repository Setup: Continuous Integration with GitHub Actions: Infrastructure Provisioning with Terraform: Continuous Deployment with Jenkins: Kubernetes Orchestration: Continuous Delivery with ArgoCD: Monitori...00