英文:
It AWS has a native way to explore DocumentDb, without using AWS Internet Gateway to external client?
问题
我创建了一个AWS DocumentDb,并且想要探索它(查找甚至添加项目)。
但我找到的唯一方法是打开VPC以连接互联网(使用AWS互联网网关),然后使用Compass或其他Mongo客户端。
是否有一种方式可以让AWS在VPC内使用其他本机客户端来完成这个任务?
我不能使用互联网网关将这个数据库暴露给互联网。(受到IT约束的限制)
谢谢!
英文:
I create a AWS DocumentDb, and I want to explore it (find or even add items).
<br>
But the only way I found how to do it, is to open the VPC to the internet (using AWS Internet gateway) and use Compass or other Mongo client.
<br>
Is there is a way that AWS can do it using any other native client within the VPC?
<br>
I can't use Internet gateway expose this DB to the internet. (IT Constraints)
<br>
Thanks!
答案1
得分: 1
在这种情况下,您可以:
- 在相同的VPC中启动一个Windows EC2实例
- 将其放置在一个私有子网中
- 在其上配置SSM和相关权限
- 通过Fleet Manager连接它
- 在其上安装您需要的任何图形用户界面(GUI)
英文:
In this scenario, you can:
- Launch a Windows EC2 instance in the same VPC
- Place it in a private subnet
- Configure SSM and relative permissions on it
- Connect it via Fleet Manager
- Install any GUI you need on it
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论