I was able to participate in a podcast discussion for NetworkCollective with Nick Russo and Craig Stansbury to discuss the new Cisco DevNet certifications and what it means for Cisco and the broader IT industry. Please listen in!
Find it here
Kyler Middleton
NetOps, DevOps, Pen Testing, InfoSec // Let's build this thing
Wednesday, April 8, 2020
Monday, March 23, 2020
HashiTalks2020: Enterprise Deployment to Azure and AWS in Azure DevOps
Hey all!
Here's my #HashiTalks2020 presentation about my company's transition from single-cloud, single-devops to cloud agnostic Terraform and multicloud Azure DevOps, pipeline and infra-as-code environments.
This deep dive video is 25 minutes long.
If you have any notes or comments please let me know!
kyler
Monday, January 13, 2020
Intro to TravisCI With Terraform
Picture-heavy walkthrough of building a TravisCI terraform pipeline. It does everything based on GitHub events.
And it has a kickin' rainbow theme. What else could you ask for? Check it out:
https://medium.com/swlh/intro-to-travisci-with-terraform-80e65cf975fe
Paywall bypass: https://medium.com/swlh/intro-to-travisci-with-terraform-80e65cf975fe?source=friends_link&sk=814896cf82cdac07cba5c2e44c42941b
- On a new PR created/updated: run a terraform validate and plan, report status back to GitHub.
- On a PR merge: run a terraform apply, deploy resources.
And it has a kickin' rainbow theme. What else could you ask for? Check it out:
https://medium.com/swlh/intro-to-travisci-with-terraform-80e65cf975fe
Paywall bypass: https://medium.com/swlh/intro-to-travisci-with-terraform-80e65cf975fe?source=friends_link&sk=814896cf82cdac07cba5c2e44c42941b
Friday, January 10, 2020
Azure DevOps YML Terraform Pipeline and Pre-Merge Pull Request Validation

tl;dr: Here’s YML code that will build an Azure DevOps pipeline that can be run automatically as part of pull request validation (pre-merge) and requires manual approval by definably admin groups in order to proceed to touch resources.
Microsoft’s Azure DevOps (ADO) is an incredibly powerful CI/CD platform that is being rapidly developed by $MSFT. However, as with any rapidly-evolving product, the documentation sometimes leaves something to be desired. I solved a few problems with the help of the Azure DevOps development team and I thought I’d share my solutions. Hope they help.
Bootstrapping Azure Cloud to Your Terraform CI/CD
Pairing Terraform with a CI/CD like Azure DevOps, Terraform Cloud, or GitHub Actions can be incredibly empowering. Your team can work on code simultaneously, check it into a central repo, and once code is approved it can be pushed out by your CI/CD and turned into resources in the cloud.

Intro to Cisco ASAv in AWS With Terraform

Intro to AWS CodeCommit, CodePipeline, and CodeBuild with Terraform

CodeCommit: A managed git repo. We’ll check our terraform code into a repo hosted in Codecommit. Enough said.
CodeBuild: A managed continuous integration service. It runs job definitions, dynamically spins up and down build servers, and can support your own tooling, i.e. terraform! We’ll write a deploy terraform build in CodeBuild.
CodeDeploy: A managed deployment service that helps push code from a repo to AWS services where it can be executed. This is the only CodeX service from AWS we won’t use.
CodePipeline: A managed deployment service that supports complex deployment processes including code testing, automated deployment all the way to production. We’ll write a pipeline to automate a PR merge → terraform deploy.
Subscribe to:
Posts (Atom)