Category: AWScommunity

New feature container image signing
By: Date: 11/06/2023 Categories: AWS,AWScommunity Tags:

You can use container image signing to help ensure the use of approved images inside your organization, which can help you meet your security and compliance requirements. You can sign and verify container images anytime during the development or deployment phases. You begin by creating a signing profile, a unique AWS Signer identity, to cryptographically…

Read More →
New- Amazon EKS and Amazon EKS Distro now support Kubernetes version 1.26
By: Date: 25/04/2023 Categories: AWS,AWScommunity Tags:

#AWS is excited to announce that you can now use Amazon EKS and Amazon EKS Distro to run Kubernetes version 1.26. You can create new 1.26 clusters or upgrade your existing clusters to 1.26 using the Amazon EKS console, the eksctl command line interface, or through an infrastructure-as-code tool. Release of Kubernetes v1.26!This release includes…

Read More →
Amazon ECS Service Connect Enabling Between Microservices
By: Date: 26/02/2023 Categories: AWS,AWScommunity Tags:

Amazon Elastic Container Services (Amazon ECS) customers have several solutions for service-to-service, but each one comes with some challenges and complications:1) Elastic Load Balancing (ELB) needs to carefully plan for configuring infrastructure for high availability and incur additional infrastructure cost.2) Using Amazon ECS Service Discovery often requires developers to write custom application code for collecting…

Read More →
Deploy Nitro Enclaves from a Kubernetes pod.
By: Date: 10/02/2023 Categories: AWS,AWScommunity Tags:

Amazon Elastic Kubernetes Service to orchestrate, scale, and deploy Nitro Enclaves from a Kubernetes pod. Kubernetes is an open source platform for container orchestration. The following diagram provides a conceptual overview of how Nitro Enclaves integrates with Amazon EKS. All pods and containers in the same Amazon EKS node or Amazon EC2 instance that has the…

Read More →
New Update-Amazon Cognito now provides user pool deletion protection
By: Date: 25/10/2022 Categories: AWS,AWScommunity Tags:

You can now activate deletion protection for your Amazon Cognito user pools. When you configure a user pool with deletion protection, the pool cannot be deleted by any user. Deletion protection is now active by default for new user pools created through the AWS Console. You can activate or deactivate deletion protection for an existing…

Read More →
What is the AWS Step Functions
By: Date: 26/04/2022 Categories: AWS,AWScommunity Tags:

It allows the user to define state machines (workflows) that connect various tasks (states). To make it easy, AWS provides a Workflow Studio that simplifies the definition step of the workflows. There are two options for workflow types: Standard Express Besides all the differences defined in the documentation, an important one for Hybrid architectures is the Activity support: In…

Read More →
Configuring HTTPS Endpoints on AWS Lambda Functions with AWS Lambda Function URLs
By: Date: 20/04/2022 Categories: AWS,AWScommunity Tags:

Introduction There are a few things to consider when deciding when to use a function URL versus building an API Gateway endpoint. Function URLs are best suited for single-function microservices with a public endpoint that doesn’t require the advanced functionality of API Gateway. Function URLs can be used to apply the following patterns: Mono-Lambda APIs:…

Read More →
Amazon ECR Pulling an Image
By: Date: 04/04/2022 Categories: AWS,AWScommunity Tags:

To run a Docker image that is available in Amazon ECR, you can pull it to your local environment with the docker pull command.   1. From an EC2 instance/Workstation, run the below command as mentioned here [1] to install AWS CLI       ———–       curl “https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip” -o “awscliv2.zip”       unzip awscliv2.zip       sudo ./aws/install       ———– …

Read More →