Hey folks, you created an IAM user in the initial period in your AWS account. AWS users can be added, their rights can be managed, new policies can be made, and much more with the help of IAM (Identity & Access Management). In this article, you will learn how to…
Month: November 2022
Copy the Object from One Bucket to Another in AWS S3
Here, we are going to see how to copy an object from one bucket to another bucket within the same account using Python SDK.
Hands-On Project 5: Using Cloud Command Line Interfaces
In this project, you will use the command line interfaces (CLI) provided by Azure and Amazon Web Services to query, start and stop, and create cloud resources. Since the scope of the command line interfaces is very broad, we will be limiting ourselves to a very small subset of the…
Using python SDK to upload and download the local file into S3 bucket
This blog post will look at using the Python boto3 library to upload the local file into S3 bucket and download the file in S3 bucket to local file.
Creating and Deleting S3 Buckets using Boto3
In this blog, we will create and delete an S3 Bucket using Python SDK or Boto3. We will make use of the inbuilt functions from Boto3 to create and delete an S3 bucket. I’ll also be sharing tips for some error messages I encountered when working on this and these…
Provisioning VM in Azure using Azure Python SDK
We know the process of provisioning the VM in Azure manually by login into portal.azure.com. In this blog we will discusses about provisioning a new VM in Azure using Azure Python SDK and the steps involved in this process.
Host a Static Website on AWS with Python and S3
Ever needed to host a simple static website? Would you like to be able to create and upload the required files to S3 and never once touch the AWS console? With the python AWS SDK (software development kit), boto3, it is easy to configure an s3 bucket to host a…
Troubleshooting Your AppService Deployment
This is step 6 of 6 of Hands-On Project 4 for Azure. In this step, we look briefly at how to remedy a few common deployment problems, and how you can obtain information you can use to determine the cause of production problems. Back to Project Problems Deploying from Visual…
Deploy a Django Application to Azure App Service
This is step 5 of 6 of Hands-On Project 4 for Azure. In this step, you do final configuration of the Azure AppService web server and the application, then deploy the application. Back to Project Update Django ALLOWED_HOSTS The Django web framework requires that we identify the host names from…
Install Application Code and Populate the Production Database
This is step 4 of 6 of Hands-On Project 4 for Azure. In this step, you install updated application code on your cloud PC, then build and initialize the production database for the e-commerce demo application. Back to Project Approach To complete this step, we will use the same approach…