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…

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

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…

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

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…

Comments Off on What is Amazon API Gateway?

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…

Comments Off on Jenkins pipeline part 8 – inputs

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…

Comments Off on Jenkins pipeline part 6 – parameters

Jenkins pipeline part 5 – options

Jenkins pipeline part 5 – options Hello Everyone Welcome to CloudAffaire and this is Debjeet. In today’s blog post, we will discuss what are different options available in a Jenkins pipeline. What is options is Jenkins pipeline? The options directive allows configuring Pipeline-specific options from within the Pipeline itself. Pipeline provides a number of these options, such as buildDiscarder, but they may also be provided by plugins, such as timestamps. Similar to pipeline-level options,…

Comments Off on Jenkins pipeline part 5 – options

Jenkins pipeline part 4 – environment

Jenkins pipeline part 4 – environment Hello Everyone Welcome to CloudAffaire and this is Debjeet. In today’s blog post, we will discuss how to use environemnt in a Jenkins pipeline with examples. What is environment is Jenkins pipeline? The environment directive specifies a sequence of key-value pairs which will be defined as environment variables for all steps, or stage-specific steps, depending on where the environment directive is located within the Pipeline. The environment directive…

Comments Off on Jenkins pipeline part 4 – environment