From the course: GitHub Copilot for System-Level Development

Unlock this course with a free trial

Join today to access over 25,500 courses taught by industry experts.

Generating IaC configurations

Generating IaC configurations

- [Instructor] Infrastructure as code is very important when you are developing, especially things that are going to end up in a production environment. What we have here is a Ross project that is also an API. So if I open up the read me and I close the file explorer here for a second, it is a simple microservice that will accept JSON string as input and return JSON string with a personal identifiable file for information redacted based on regular expressions stored as JSON. A very simple microservice, it's HTTP. We need to deploy this. How do we do this? Well, I've created a prompt where I'm asking to generate a deployment procedure for this application. I want to use Ansible. Ansible is one of the many different frameworks that you can use to create infrastructure as code, which is essentially configuring and deploying, doing the whole process of deployment with code. Since the deployment process doesn't exist yet, only…

Contents