Junior — Middle
Tell about your experience working as a cloud engineer.
sobes.tech AI
Answer from AI
As a cloud engineer, I was involved in configuring and maintaining cloud infrastructure, automating deployment processes, and monitoring services. My experience includes working with platforms such as AWS and Azure, where I created and managed virtual machines, containers, and network resources.
I also wrote scripts in Python to automate routine tasks, such as managing instances, processing logs, and integrating with cloud service APIs.
An example of a simple Python script to get a list of instances in AWS EC2:
import boto3
ec2 = boto3.client('ec2')
response = ec2.describe_instances()
for reservation in response['Reservations']:
for instance in reservation['Instances']:
print(instance['InstanceId'], instance['State']['Name'])