Back to Browse

Create SFTP server in AWS with username & password authentication

13.1K views
Premiered Dec 27, 2021
16:14

In this video, I have discussed about "How to create SFTP servers in AWS with username and password verification." SFTP stands for secured file transfer protocol and AWS is number #1 cloud service provider in the world. One can easily create SFTP by watching this tutorial and use it for educational purpose. AWS sftp blog: https://aws.amazon.com/blogs/storage/enable-password-authentication-for-aws-transfer-for-sftp-using-aws-secrets-manager/ Secret manager - json: { "Password": "testyt", "Role": "arn:aws:iam::538526032637:role/test-role-yt", "HomeDirectory": "/test-yt" } Policy Json { "Version": "2012-10-17", "Statement": [ { "Sid": "VisualEditor0", "Effect": "Allow", "Action": [ "s3:ListBucket", "s3:GetBucketLocation" ], "Resource": "arn:aws:s3:::test-sftp-bucket-tk" }, { "Sid": "VisualEditor1", "Effect": "Allow", "Action": [ "s3:PutObject", "s3:GetObjectAcl", "s3:GetObject", "s3:DeleteObjectVersion", "s3:DeleteObject", "s3:PutObjectAcl", "s3:GetObjectVersion" ], "Resource": "arn:aws:s3:::test-sftp-bucket-tk/*" } ] } #AWS #SFTP #Username&Password #SimpleSFTP

Download

0 formats

No download links available.

Create SFTP server in AWS with username & password authentication | NatokHD