How to authenticate docker in aws ecr?

How to authenticate docker in aws ecr? Hello Everyone Welcome to CloudAffaire and this is Debjeet. You can use Amazon ECR credential helper or AWS CLI get-login-password and get-authorization-token commands to authenticate the docker client or API requests in AWS ECR. Prerequisites: AWS CLI and Docker installed and configured. How to authenticate docker in aws ecr? Using the Amazon ECR credential helper (for docker client): Amazon ECR provides a Docker credential helper which makes…

0 Comments

How to scan images in ECR container registry using AWS inspector?

How to scan images in ECR container registry using AWS inspector? Hello Everyone Welcome to CloudAffaire and this is Debjeet. Today we will discuss how to setup image scanning on push in ECR container registry with AWS inspector service using AWS CLI and review the findings report. What is Elastic Container Registry (ECR)? Amazon Elastic Container Registry (Amazon ECR) is an AWS managed container image registry service that is secure, scalable, and reliable. Amazon…

0 Comments

How to create a private repository in Amazon Elastic Container Registry (ECR) using AWS CLI?

How to create a private repository in Amazon Elastic Container Registry (ECR) using AWS CLI? Hello Everyone Welcome to CloudAffaire and this is Debjeet. Today we will discuss how to create a private repository in AWS Elastic Container Registry (ECR) using AWS CLI. We will also discuss on how to push and pull a docker image from AWS ECR private repository using AWS CLI. What is Elastic Container Registry (ECR)? Amazon Elastic Container Registry…

0 Comments

How to create an API Gateway with lambda integration using AWS CLI?

How to create an API Gateway with lambda integration using AWS CLI? Hello Everyone Welcome to CloudAffaire and this is Debjeet. In today’s blog post, we will discuss how to create an HTTP API Gateway with lambda integration using AWS CLI with example. We will first create a lambda function and DynamoDB table that will serve as the backend for your REST API and then create an Amazon HTTP API Gateway that routes your…

2 Comments

How to export a DynamoDB table to S3 bucket using AWS CLI?

How to export a DynamoDB table to S3 bucket using AWS CLI? Hello Everyone Welcome to CloudAffaire and this is Debjeet. Today we are going to discuss how to export a DynamoDB table to S3 bucket using AWS CLI. You can now export a DynamoDB table to an S3 bucket. To export data from an Amazon DynamoDB table to an Amazon S3 bucket, point-in-time recovery (PITR) must be enabled on the source table. You…

0 Comments

What is Amazon API Gateway?

What is Amazon API Gateway? Hello Everyone Welcome to CloudAffaire and this is Debjeet. In today’s blog post we will discuss what is Amazon API Gateway, type of API supported by API gateway and core components of Amazon API Gateway. What is API? An Application Programming Interface (API) is a connection between computers or between computer programs. It is a type of software interface, offering a service to other pieces of software. What is…

0 Comments

Jenkins pipeline part 8 – inputs

Jenkins pipeline part 8 – inputs Hello Everyone Welcome to CloudAffaire and this is Debjeet. In today’s blog post, we will discuss inputs in a Jenkins pipeline and how take input from user in Jenkins pipeline using inputs. What is inputs is Jenkins pipeline? The input directive on a stage allows you to prompt for input, using the input step. The stage will pause after any options have been applied, and before entering the…

0 Comments

Jenkins pipeline part 7 – triggers

Jenkins pipeline part 7 – triggers Hello Everyone Welcome to CloudAffaire and this is Debjeet. In today’s blog post, we will discuss triggers in a Jenkins pipeline and how to use different types of triggers in your Jenkins pipeline definition. What is triggers is Jenkins pipeline? The triggers directive defines the automated ways in which the Pipeline should be re-triggered. For Pipelines which are integrated with a source such as GitHub or BitBucket, triggers…

1 Comment

Jenkins pipeline part 6 – parameters

Jenkins pipeline part 6 – parameters Hello Everyone Welcome to CloudAffaire and this is Debjeet. In today’s blog post, we will discuss parameters in a Jenkins pipeline and how to pass arguments in Jenkins pipeline using parameter directive. What is parameters is Jenkins pipeline? The parameters directive provides a list of parameters that a user can provide when triggering the Pipeline. The values for these user-specified parameters are made available to Pipeline steps via…

0 Comments