2 min read
Provisioning a AWS Service Catalog Product can be done with any IaC tool. Terraform is no different.
05/09/2024
Read more...2 min read
With the .aws/config
and .aws/credentials
files we can are used for configuring and authenticating for the AWS cli or any tool that uses the AWS SDK with AWS.
Each file has a different purpose:
~/.aws/config
: This file stores configuration settings for AWS CLI and SDKs, including profiles, regions, output format, and roles to assume.~/.aws/credentials
: This file holds AWS access key IDs and secret access keys.04/09/2024
Read more...3 min read
AWS Service Catalog allows organizations to create and manage catalogs of IT services that are going to get deployed in AWS using CloudFormation templates. To deploy an instance of a product we can use any IaC tool like Terraform, Pulumi, or the AWS CDK.
03/09/2024
Read more...4 min read
Security is one of the key concerns when running workloads on Kubernetes. To help teams safeguard their cluster environments, Kubernetes offers Pod Security Standards (PSS). These standards define how to enforce security controls for your pod workloads.
02/09/2024
Read more...2 min read
When you need to connect to some service as if you were in the same network as the Kubernetes cluster, you can use a Pod with socat to create a tunnel to the service.
28/08/2024
Read more...