Tag

aws cli

How to Set Up an EKS Cluster with eksctl command line

AWS By Jul 26, 2023 No Comments

How to Set Up an EKS Cluster with Managed Node Group and AWS Ingress Controller: A Step-by-Step Guide to create through eksctl I will guide you through the process of setting up an Amazon Elastic Kubernetes Service (EKS) cluster with a Managed Node Group and AWS Ingress Controller. This will allow you to efficiently manage your containerized applications and handle…

AWS CLI: Commands-

AWS By Jul 13, 2023 No Comments

AWS CLI: Commands for S3, EC2, Lambda, IAM, RDS, DynamoDB, SQS, SNS, CloudFormation, ECR, EKS, SSM, CloudWatch, Route 53, Kinesis The AWS Command Line Interface (CLI) is a unified tool that provides a consistent interface for interacting with all parts of AWS. AWS CLI supports multiple AWS services and the list is quite extensive. Below are examples of AWS CLI…

AWS Lambda S3 Trigger Configuration using AWS CLI : A Step-by-Step Guide

AWS CLI By Dec 25, 2022 No Comments

To set up an Amazon S3 trigger for an AWS Lambda function using the AWS CLI, you can use the aws lambda add-permission and aws s3api put-bucket-notification-configuration commands. First, you will need to grant permission for the S3 bucket to invoke the Lambda function using the aws lambda add-permission command: This will grant permission for the my-bucket S3 bucket to…