Posts in 2022

  • Call Lex Intent From Amazon Connect Without User Input

    Saturday, December 24, 2022 in AWS

    Lex can be integrated within Amazon connect using the “Get customer input” widget. This widget plays an initial prompt. Once the user states something then intent is triggered based on the relevant utterance. However, there might be …

    Read more

  • Install CloudWatch Agent on Ubuntu AWS EC2 Instance

    Monday, December 12, 2022 in AWS

    Check whether CloudWatch agent already installed by running the following command amazon-cloudwatch-agent-ctl -help If this prints the usage details then CloudWatch agent is already installed. If not proceed with installation Pre-requisite Attach the …

    Read more

  • Install SSM Agent on Ubuntu AWS EC2 Instance

    Monday, December 12, 2022 in AWS

    SSM agent is installed by default on the latest Ubuntu images, so first verify whether the SSM agent is already installed by executing the following command. sudo snap list amazon-ssm-agent if the above command returns error: no matching snaps …

    Read more

  • Transfer AWS Elastic IP From One Account to Another

    Sunday, December 11, 2022 in AWS

    Request transfer in Source Account Open AWS EC2 console in source account https://console.aws.amazon.com/ec2/home Click Network & Security -> Elastic IPs Select the required IP Click Actions -> Enable Transfers Enter the target account id …

    Read more

  • Migrate Ec2 From One Account to Another

    Saturday, December 10, 2022 in AWS

    Take snapshot of EC2 from Source Account Open AWS EC2 console https://ap-south-1.console.aws.amazon.com/ec2/home Click Instances in the left navigation Select the required EC2 instance Click Actions -> Image and templates -> Create image Enter …

    Read more

  • Where Can I Find the default AWS SDK Version of Lambda Runtime?

    Friday, December 09, 2022 in AWS

    Following link provides the mapping between different lambda run times and the corresponding AWS SDK version https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html

    Read more

  • Transfer Domain From Godaddy to Aws

    Saturday, December 03, 2022 in AWS

    Prepare domain to transfer from Godaddy Login into godaddy Go to My Products Open the settings of the required domain which needs to be transferred Verify the email id provided contact info is valid and you have access to this email account Click …

    Read more

  • How to Setup Ubuntu WSL in Windows Server 2019

    Wednesday, August 03, 2022 in AWS

    Enable WSL Run PowerShell as a Administrator (i.e. Look for “PowerShell” in windows menu and right click and click on “Run as Administrator”) In the PowerShell type wsl If it displays a command not found then execute the …

    Read more

  • Configure and Login to SSO Using Cli Aws Profile

    Wednesday, May 25, 2022 in AWS

    Configure a new SSO profile $ aws configure sso --profile my-test-profile This will ask for the SSO URL and the region. Enter the URL that you use in the SSO portal. SSO start URL [None]: https://<my-account>.awsapps.com/start SSO Region …

    Read more

Posts in 2019

  • How to Clear Cloudfront Cache Using Aws Cli

    Wednesday, January 09, 2019 in AWS

    aws cloudfront create-invalidation --distribution-id $DISTRIBUTION_ID --paths '/*' Replace $DISTRIBUTION_ID with the cloudfront distributions ID Reference: https://docs.aws.amazon.com/cli/latest/reference/cloudfront/create-invalidation.html

    Read more