Amulyaawscloudbasics.hashnode.dev·Dec 19, 2024Boto3: Python's AWS Interaction Powerhouse for DevOpsIntroduction to Boto3 Boto3 is a powerful Python package that allows developers and DevOps engineers to interact programmatically with AWS services. It simplifies the process of creating, managing, and automating AWS resources through Python scripts....pythonboto3
ABHINANDHAN Sthelazydeveloperwrites.hashnode.dev·Nov 29, 2024serverless uploading to AWS S3Uploading large files (up to 5TB) efficiently and securely from a React application to an AWS S3 bucket is a common use case. In this blog, I'll walk you through implementing this solution using pre-signed URLs, with AWS Lambda handling backend logic...11 likes·32 readsAWS
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 ...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...Devops
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...Configuration 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...Python
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 ...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...AWS
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...AWSAWS
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...10 likesec2