-
Notifications
You must be signed in to change notification settings - Fork 170
BM-1754: Zeroecco/stuck jobs #1247
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
Co-authored-by: Austin Abell <austinabell8@gmail.com>
…ess into zeroecco/stuck_jobs
🚀 Documentation Preview Deployment URL: https://boundless-documentation-ewy8i9uck-boundless-network.vercel.app Updated at: 2025-10-21 21:23:10 UTC |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Whats the motivation for this? We can use SSM to ssh into machines using AWS for auth already can't we?
const chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789'; | ||
let result = ''; | ||
for (let i = 0; i < 32; i++) { | ||
result += chars.charAt(Math.floor(Math.random() * chars.length)); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not the best practice to use a pseudorandom number generator for keys. Can we just set the API key in Pulumi state and pass it in (as we do in our other stacks for secrets), or use something like crypto.getRandomValues
the api layer for authenticated queries