【发布时间】:2021-03-29 08:13:30
【问题描述】:
这更多是架构问题,而不是编码问题。 如果我在错误的地方请原谅我 我有一个在私有 VPC 中运行的 Ec2 实例,我们将来会在那里 将部署 PII 数据,但绝不意味着我们可以通过互联网访问它。 但是我们需要在 docker 中安装 ETL 工具(Airflow、docker、nifi、python 等) 当然需要从我当地的公司 vpc ssh 进入。
我认为有两种方法
1. To create an another EC2 in public subnet and install all our tool there
and call the VPC EC2 from this one.
So that I can move the PII data to S3 through private Endpoint.
Cons: Does not it still raise the security concern as the EC2(ETL) is still
in internet where from one can access the PII data in second ec2.
另一种选择
2. To create the Ec2 in public and install all tools and then
finally change it into private VPC.
Cons: in case if tool crash or there is any change needed then will have to
move it back to public which again does not look proper way of handling it.
我试图搜索互联网以获取有关它的任何教程或培训。 但是找不到。
任何建议都将受到高度赞赏。
【问题讨论】:
标签: amazon-web-services amazon-ec2 amazon-vpc