0

I have an AWS S3 Bucket holding a development website. I would like to FTP(SSL) into the S3 Bucket, and also be able to create username and password credentials for others. Is this possible, and how can I do this?

Thanks!

Mike5050
  • 625
  • 1
  • 7
  • 22
  • 1
    No, SFTP is not possible with native S3 services/tools. You might be able to find some third-party FTP projects that can proxy the interface to S3. – jarmod Nov 08 '17 at 23:57
  • And, that explains why I was not able to find any information on how to do this. What is the point of using an S3 bucket, and code deploy, if you are not allowed to update the S3 bucket in an easy manner? Meh, Ill have to switch to a git repo. – Mike5050 Nov 09 '17 at 00:18
  • There are plenty of simple options for uploading/downloading S3 objects. – jarmod Nov 09 '17 at 00:25
  • Possible duplicate of [FTP/SFTP access to an Amazon S3 Bucket](https://stackoverflow.com/questions/23939179/ftp-sftp-access-to-an-amazon-s3-bucket) – Martin Prikryl Nov 09 '17 at 06:52

1 Answers1

3

Before giving up on S3 remember that sometimes frustration with a new product or technology comes from lack of knowledge and experience. The Amazon Cloud platform has some amazing services to work with.

FTP is an old technology that is not as popular today. The new style is using REST interfaces. S3 supports REST. Also you can easily copy files to / from S3 using command line tools. Look into the AWS Command Line Interface (CLI). Link below.

If your goal is to use S3 as your source repository look into AWS CodeCommit. Very similar to GIT. There is also CodePipeline, CodeBuild and CodeDeploy. Combine these tools with other Amazon services such as CloudFormation and you have real developer power.

AWS Command Line Interface

AWS Code Services

AWS CloudFormation

John Hanley
  • 74,467
  • 6
  • 95
  • 159
  • Wow! Thank you. Looks like what I wanted was the Code Commit, and Code Pipeline to target it. with Code Deploy! – Mike5050 Nov 09 '17 at 00:41
  • Your are welcome Mike. Also these tools are easy to work with and you will find support for them easy to find. – John Hanley Nov 09 '17 at 00:47