Junior — Middle
What is your experience with using cloud platforms AWS or Azure in practice?
sobes.tech AI
Answer from AI
In practice, I have used cloud platforms AWS and Azure for deploying and managing applications, as well as for automating processes.
With AWS, I worked with services:
- EC2 for virtual servers
- S3 for data storage
- Lambda for serverless functions
- CloudFormation for infrastructure as code
With Azure, I used:
- Azure App Service for hosting web applications
- Azure Functions for serverless computing
- Azure DevOps for CI/CD
Example: using boto3 (AWS SDK for Python), you can upload a file to S3:
import boto3
s3 = boto3.client('s3')
s3.upload_file('local_file.txt', 'my-bucket', 'remote_file.txt')
My experience includes setting up infrastructure, automating deployment, and monitoring applications in the cloud.