TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Ask HN: How do you provide SSH access to developers in your infrastructure

2 点作者 prodicus将近 6 年前
I am curious about how do you do it, keeping in mind<p>- different teams having access to only those boxes which belong to that team<p>- providing ssh access without hand smashing the server.<p>- revoking ssh access for someone as and when required.<p>Would also be interested to know of possible ways to do the above.

4 条评论

devm0de将近 6 年前
Use aws identities and policies to control ssh access to ec2 instances <a href="https:&#x2F;&#x2F;aws.amazon.com&#x2F;about-aws&#x2F;whats-new&#x2F;2019&#x2F;06&#x2F;introducing-amazon-ec2-instance-connect&#x2F;" rel="nofollow">https:&#x2F;&#x2F;aws.amazon.com&#x2F;about-aws&#x2F;whats-new&#x2F;2019&#x2F;06&#x2F;introduci...</a><p>Has some quirks but might be useful for companies using ec2 instances.
verdverm将近 6 年前
&quot;gcloud compute ssh instance-name&quot; and &quot;kubectl exec ...&quot; with IAM<p>I am still surprised that AWS has not created the same experience as GCP. the instance connect from the co-comment is an improvement, but requires install on each server and client, plus an extra step when you want to connect.
stephenr将近 6 年前
Use ldap as your centralised auth, add a schema extension for ssh public keys, configure sshd&#x2F;pam&#x2F;nss to use ldap (and the keys contained therein) for users&#x2F;auth.<p>Use groups or a host attribute in ldap to manage access to specific servers or groups of servers.<p>Bonus: you can manage sudo access from ldap too.
vs4vijay将近 6 年前
Have you looked at Netflix&#x27;s BLESS: <a href="https:&#x2F;&#x2F;github.com&#x2F;Netflix&#x2F;bless" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;Netflix&#x2F;bless</a>