How to Use Lambda Functions to Rotate Secrets in AWS | Code and Configuration | Expained in Hindi

Поделиться
HTML-код
  • Опубликовано: 8 сен 2023
  • In this tutorial, we'll explore how to effectively use Lambda functions to automate secret rotation in AWS. Managing sensitive information like API keys, database passwords, or encryption keys is crucial for security, and AWS Lambda can help streamline this process. We'll provide you with step-by-step guidance on setting up Lambda functions, writing the necessary code, and configuring them to automatically rotate secrets. Enhance your AWS security and simplify secret management with this comprehensive guide.
    GitHub Repo : github.com/mihirbhatt4687/lam...

Комментарии • 15

  • @patelmanishin
    @patelmanishin 11 месяцев назад +1

    Nice video, useful information shared. Keep doing good work 💯

  • @transmissiontelecom6139
    @transmissiontelecom6139 9 месяцев назад +1

    Thanks for the video, I have deployed this and working fine.

    • @webdevcloud1
      @webdevcloud1  9 месяцев назад

      Glad that helped, kindly consider subscribing for more useful videos like this 🙏

  • @sutthaamuttha
    @sutthaamuttha 3 месяца назад

    Nice one 🎉

  • @easy2learnsubjects498
    @easy2learnsubjects498 11 месяцев назад

    Good informative video

  • @transmissiontelecom6139
    @transmissiontelecom6139 9 месяцев назад

    {
    "Action": [
    "ec2:CreateNetworkInterface",
    "ec2:DeleteNetworkInterface",
    "ec2:DescribeNetworkInterfaces",
    "ec2:DetachNetworkInterface"
    ],
    "Resource": "*",
    "Effect": "Allow"
    }
    Is this required to add? or without this it can work

    • @webdevcloud1
      @webdevcloud1  9 месяцев назад

      Yes it is required if resources are in vpc...

  • @yuvrajjambhle9061
    @yuvrajjambhle9061 6 месяцев назад

    Hi, nice video. can you tell me how to use for rds database?

    • @webdevcloud1
      @webdevcloud1  6 месяцев назад

      There is an option in RDS, if you enable it then the secret will be rotated automatically...

    • @yuvrajjambhle9061
      @yuvrajjambhle9061 6 месяцев назад

      @@webdevcloud1 could you please tell me where this option is? or the option is includes in secrets we have to select it while creating the secrets for rds. Same lambda function will work for the rds password rotation too?

    • @webdevcloud1
      @webdevcloud1  6 месяцев назад +1

      You can have this option while creating rds however you can manually rotate the same via custom lambda ...

  • @sandeepkumar5300
    @sandeepkumar5300 10 месяцев назад

    Can you give the lambda function

    • @webdevcloud1
      @webdevcloud1  10 месяцев назад

      You can find it from the GitHub repo link given in the description