Sobes.tech
Junior — Middle

How is the interaction and management of cloud platforms carried out in your work?

sobes.tech AI

Answer from AI

Interaction and management of cloud platforms are usually carried out through web consoles, CLI tools, and APIs. For example, AWS uses the AWS Management Console and AWS CLI, while Azure uses the Azure Portal and Azure CLI.

In my work, I use Infrastructure as Code (IaC) with tools like Terraform or CloudFormation, which allows describing and managing resources declaratively. This simplifies automation, scaling, and repeatability of deployments.

I also utilize CI/CD systems (such as Jenkins, GitLab CI) that integrate with cloud services for automatic testing and deployment of applications.

An example of using AWS CLI to launch an EC2 instance:

aws ec2 run-instances --image-id ami-0abcdef1234567890 --count 1 --instance-type t2.micro --key-name MyKeyPair --security-groups MySecurityGroup