Does CDK perform orchestration ? apart from provisioning

孤街醉人 提交于 2019-12-02 21:20:36

问题


We used CloudFormation/Terraform for provisioning resources in AWS.

Provisioning is about creating a new state or transforming one state to another.


We used ansible tool to orchestrate provisioning

Automation may be used on the single system. Orchestration takes the automation and coordinates the process between multiple systems. Usually because one system may be dependent on another system before it can accomplish its task. You cannot have orchestration without automation.

So, Orchestration is about resolving dependencies


But AWS CDK looks more programmer friendly for provisioning

Below commands

aws cdk init

aws cdk synth

aws cdk deploy

are take care of provisioning in AWS


For orchestration, Does AWS CDK also take care of resolving dependencies? amidst provisioning

来源:https://stackoverflow.com/questions/59000872/does-cdk-perform-orchestration-apart-from-provisioning

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!