Symfony 8 AWS Secrets Bundle
The Symfony 8 AWS Secrets Bundle has been released, allowing users to integrate AWS Secrets Manager with Symfony 8. This updated bundle supports various authentication methods and simplifies the process of using secrets in the service container. The author encourages users to provide feedback and support to library maintainers to prevent abandonment of useful projects.
- ▪The bundle allows the use of secrets stored in AWS Secrets Manager as parameter values in Symfony 8 service containers.
- ▪It supports multiple authentication methods, including long-term credentials and temporary AWS STS tokens.
- ▪The original AWS Secrets Bundle was published in 2021 and has since accumulated over 212,000 downloads.
Opening excerpt (first ~120 words) tap to expand
try { if(localStorage) { let currentUser = localStorage.getItem('current_user'); if (currentUser) { currentUser = JSON.parse(currentUser); if (currentUser.id === 442811) { document.getElementById('article-show-container').classList.add('current-user-is-article-author'); } } } } catch (e) { console.error(e); } Nikola Stojiljkovic Posted on May 23 Symfony 8 AWS Secrets Bundle #php #symfony #aws #webdev My previous bundle that supported Symfony 5 and 6 was downloaded over 210.000 times, so it looks like it was useful. :D I've decided to publish an updated one that follows new Symfony bundle architecture as a separate library. More in the second part of this article. Anyway...
…
Excerpt limited to ~120 words for fair-use compliance. The full article is at DEV.to (Top).