Vikas Dubeyvickonfire.hashnode.dev·Nov 5, 2024Boto3 Module in a NutshellIn the world of Automation Why IAC plays an important role lets have brief overview on one such AWS SDK module known as Boto3 and how we can leverage it to automate infrastructure provisioning 😇 Boto3 is the official Python library for working with ...Discuss·1 like#IaC
Shivam Sonishivtrent.hashnode.dev·Oct 29, 2024Automate Your Backups to Amazon S3 with PythonAs data continues to be a critical asset in the digital world, creating reliable backups is more important than ever. Automating backups can help prevent data loss, streamline restoration, and reduce manual effort, especially for crucial files and di...DiscussDevops
Akash Sutarlearn-jenkins.hashnode.dev·Oct 25, 2024Project On Provisioning Resources On AWS Using AnsibleIntroduction Ansible is a powerful tool that can also be used to provision various resources, such as on the AWS platform, GCP, or Azure. In this series, we will use the Ansible Playbook to provision AWS EC2 instances. Setting Up the Environment Unde...DiscussConfiguration Management- Ansibleansible
Amitt Ashokamittashok.hashnode.dev·Oct 22, 2024How Python Enhances DevOps Efficiency and Automation# Create in function format import os import boto3 # Set clinet globally s3 = boto3.client('s3') def list_bucket(): response = s3.list_buckets() # Fetch the buckets form account bucket_list = (response["Buckets"]) # Iterate ov...DiscussPython
Jeevang1nagarkar.hashnode.dev·Oct 5, 2024Secure Way to Share S3 Objects: Using Pre-Signed URLs with Python (Boto3)Amazon S3 is a highly scalable and reliable storage service, but when it comes to sharing your stored objects securely, simply making them public isn't always the best approach. Fortunately, AWS offers secure methods for sharing objects from private ...Discuss·1 likeAWSAWS
Ankita Lunawatcloudhub2295.hashnode.dev·Sep 23, 2024Different ways to create s3 Bucket1. Creating an S3 Bucket via AWS Management Console Step 1: Sign in to AWS Management Console Open the AWS Management Console, and sign in using your credentials. Step 2: Open the S3 Dashboard In the AWS Console, search for S3 in the services sear...DiscussAWS
Jeevang1nagarkar.hashnode.dev·Sep 21, 2024🚀 Explore AWS Automation with Boto3! 🐍Hello Everyone, Last time we explored AWS CLI commands and created bash scripts for automation. But if you prefer Python over bash, you can achieve the same automation using Boto3—the official AWS SDK for Python! 🖥️ With Boto3, you can seamlessly cr...DiscussAWSAWS
Arham Iqbaliarham924.hashnode.dev·Aug 29, 2024Automating EC2 Snapshots with Python: Project Overview and Lessons LearnedI’m excited to share the completion of my latest project: EC2 Snapshot Automation using Python. This project leverages the power of Python and AWS to automate the creation and deletion of EC2 snapshots, streamlining backup processes and enhancing dat...Discuss·10 likesec2
Gopika Jayakrishnangopikajayakrishnan.hashnode.dev·Jul 30, 2024Step-by-Step Tutorial: DynamoDB CRUD Operations with Python AWS SDKs 🛠️📊Introduction In the fast-paced world of cloud computing, managing databases efficiently is crucial. That's where DynamoDB, Amazon's fully managed NoSQL database service, comes in, offering seamless and scalable data storage. To interact with DynamoDB...Discuss·1 likeAWS
Gopika Jayakrishnangopikajayakrishnan.hashnode.dev·Jul 26, 2024How to Deploy a Node.js App on AWS Lambda: Step-by-Step InstructionsIntroduction AWS Lambda offers a serverless computing environment, enabling you to run code without the need for server management. Deploying a Node.js application to AWS Lambda can significantly enhance scalability and cost efficiency for your proje...Discuss·10 likes·70 readsAWS