CICD on AWS with explanation
Hallo folks, this is Utpal and in this article I have build a CICD pipeline on AWS cloud. AWS is the leading cloud service provider which is a subsidiary of Amazon and provides on-demand cloud computing platforms and APIs to individuals, companies, and governments, on a metered pay-as-you-go basis. In any IT farm, there are two teams- developer and operation team. The developers develop their code and pass it to the operation team. The operation team deploy the code, run tests (unit test, integration test, load test, UI test, security test etc) and do monitoring. In case of any failure or bug, they give feedback to the developers. After the fixes when the code passes all the tests, they are uploaded to target servers. Now there are many problems. The code developers develop, runs on their system. But it may not run properly on the systems of operation team. If not, they give feedback that the code is faulty which developers disagree. Thus, a back and forth occurs between the two t...