AWS OpsWorks vs AWS Beanstalk vs AWS CloudFormation?

前端 未结 8 1881
栀梦
栀梦 2020-12-22 20:53

I would like to know what are the advantages and disadvantages of using AWS OpsWorks vs AWS Beanstalk and AWS CloudFormation?

I am interested in a system that can be

相关标签:
8条回答
  • 2020-12-22 21:23

    Just use terraform and ECS or EKS.

    opsworks, elastic beanstalk and cloudformation old tech now. -)

    0 讨论(0)
  • 2020-12-22 21:24

    AWS CloudFormation - Create and Update your environments.

    AWS Opsworks - Manage your systems inside that environments like we do with Chef or Puppet

    AWS Beanstalk - Create, Manage and Deploy.

    But personally I like CloudFormation and OpsWorks both by using its full power for what they are meant for.

    Use CloudFormation to create your environment then you can call Opsworks from cloud formation scripts to launch your machine. Then you will have Opsworks stack to manage it. For example add a user in linux box by using Opsworks or do patching of your boxes using chef recipes. You can write down chef recipes for deployment also. Otherwise you can use CodeDeploy specifically build for deployment.

    0 讨论(0)
提交回复
热议问题