Skip to main content

2 posts tagged with "AWS"

Articles related to Amazon Web Services.

View All Tags

AWS EC2 Deployment with Azure DevOps

· One min read
Sai Manasa Kota
Backstage Developer

A complete guide to Launching an AWS EC2 instance and deploying a simple application using Azure pipelines.

Hello World… Welcome to the ultimate hands-on guide for launching an AWS EC2 instance and deploying a simple application using Azure pipelines. So, let’s get started…

Overview:

  • What is Azure DevOps Pipeline?
  • What is YAML?
  • What AWS EC2 Server is?
  • What is a User Data script?
  • Simple hands-on guide: using the PEM key
  • Simple hands-on guide: using User Data script
  • Architectural Diagram
  • Source Code

What is Azure DevOps Pipeline?

Azure DevOps Pipeline is a cloud-based service that enables developers to automate the entire software delivery process. It provides a platform for building, testing, and deploying code across various platforms and environments. It supports integration with multiple version control systems, including Git, Subversion, TFVC, etc. It offers a flexible and customizable YAML-based configuration for defining build and release pipelines.

Read the full article here

Recovering Lost PEM Keys in AWS

· One min read
Anvesh Muppeda
Kubernetes Developer

Losing a PEM key in AWS can be problematic because the key is required to access instances securely. once you’ve lost or misplaced a PEM key in AWS, there’s no direct way to retrieve or recover it from AWS itself. This is by design to maintain the security of your instances. The private key is meant to remain confidential, and AWS does not store or keep copies of user-generated keys for security reasons.

Recovering Lost PEM Keys in AWS: A Step-by-Step Guide