Skip to content

Secure Cloud-Based Development Environment

0

Currently, our source code is stored locally on a laptop, where the AWS CLI and Kiro IDE are also installed.

From this laptop, we deploy the application to AWS using the AWS CLI.

At the moment, all deployments are performed from the laptop.

I would like to design a secure development environment that allows us to work and deploy from anywhere, without depending on a single laptop.

Could you please advise on the AWS services and features that would enable this setup while maintaining strong security and access control?

asked 2 months ago39 views

1 Answer
1

This is a broad question with no one right answer. It depends on your situation, budget and security requirements. At a minimum, check https://aws.amazon.com/devops/ which talks about how to started a DevOps process.

You need to consider the following options at a minimum.

  • Select a source control - GitHub, GitLab... (You need to consider private / public options)
  • Based on the source control, you can build a pipeline that will deploy to AWS. (You may consider hosting the pipeline runners in AWS)

You can also select AWS CodePipeline, CodeBuild that gets triggered from your source control.

EXPERT

answered 2 months ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.