Below is an example configuration file for Kong, including some basic configurations for services: kong_yml: _format_version: "1.1" services: - name: example-service url: http://example.com/api routes: - name: example-route paths: - /example methods: - GET we extended this configuration by adding more services, routes,…
Pavithra M
DevOps Engineer, Wego.
Manage Cloudflare Using Terraform
In this blog, we'll walk you through the steps to get started with managing Cloudflare using Terraform. This can save you time and ensure consistency across your Cloudflare setup. To do so, you'll need to generate an API token in Cloudflare. Make sure it is stored…
Mind the Gap between the Code and the Platform with DRIFTCTL
One of the biggest challenges in an IaC managed infrastructure is to spot drift. Drift is the term that real-world state of your infrastructure differs from the state defined in your configuration. It is a blind spot and a source of potential security issues. Drift can have multiple causes: from…
AWS Resource Cost Estimation via Terraform with Infracost and Atlantis on Github PR
Infracost lets you see a cost breakdown and understand costs before making changes. On integration with Atlantis, can see cloud cost estimates for Terraform in pull requests. So teams can understand better the cost of changes before deploy. Implementation: 1. Update your setup to use the infracost-atlantis [https://hub.docker.…
Setting up AWS SSO and AWS Client VPN
AWS Client VPN is a simple solution that allows users to connect from anywhere to their AWS environments. Single sign-on (SSO) is used widely across organizations to authenticate and authorize their users’ access to enterprise applications and IT services from a single identity provider (IdP). In this article, I’ll…