Folders in SFTP Gateway
Use cases for Folders
Folders in SFTP Gateway are logical mappings. They map an SFTP subdirectory to a Cloud Connection.
In other words, Folders let you map SFTP folders to different cloud locations.
Default configuration
By default, SFTP Gateway has a root Folder that maps to the default Cloud Connection:
/ <-- maps to default Cloud Connection
SFTP Gateway comes with a default Folder structure that looks like this:
/ <-- maps to default Cloud Connection
/users/ <-- a regular Folder that inherits from the parent directory
/users/userA/ <-- an inherited Folder that acts as the Home Directory of userA
/users/userB/ <-- an inherited Folder that acts as the Home Directory of userB
From the SFTP user's point of view, their file system will be chrooted to their Home Directory. For example, userA
will log in and see the following:
/
This chroot directory corresponds to this Folder:
/users/userA/
And any uploaded files will end up in Google Cloud Storage:
gs://default-bucket/users/userA/
Folder Permissions
Folders
in SFTP Gateway create SFTP subdirectories?
Do When creating a Folder, you can select one of two options:
- Inherited
- Cloud Connection
Folder is set Inherited
Inherited is the default option.
When you use the Inherited option, file uploads will go to the Cloud Connection defined by the parent Folder. For example, you can have a chain of Inherited Folders that all point to the default Cloud Connection:
/ <-- maps to default Cloud Connection
/users/ <-- inherits from the root path "/"
/users/userA/ <-- inherits from /users/
It's important to note that an Inherited Folder will create an SFTP subdirectory of the same name. For example, these Folder objects:
/users/ <-- inherited
/users/userA/ <-- inherited
will create the following paths in Google Cloud storage:
gs://default-bucket/users/
gs://default-bucket/users/userA/
Folder is set to Cloud Connection
You can point a Folder directly to a Cloud Connection. For example:
/ <-- maps to default Cloud Connection
/users/ <-- inherited Folder
/custom/ <-- points to "Cloud Connection B"
Files uploaded to the /custom/
Folder will end up in Cloud Connection B
rather than the default Cloud Connection.
It's important to note that when a Folder points to a Cloud Connection, it does not create a subdirectory. This is necessary, because you might want to point the Folder to the root of a Bucket:
/custom/ <-- points to gs://custom-bucket/
Custom configurations
You can use Folders and Cloud Connections for more complicated setups. For example, you want to share files between different accounts. Or, you want to transfer files between Cloud providers.
Here are some configuration examples:
Use case 1: multiple Storage Accounts
For example, an SFTP user can have two subfolders under their chroot directory:
/
|--folderA/ <-- maps to Storage Account A
|--folderB/ <-- maps to Storage Account B
Each Folder maps to its own Blob path in a different Storage Account.
Use case 2: group folder
You can use Folders for file sharing.
/
|--userA/ <-- maps to a location dedicated to UserA
|--group/ <-- maps to a shared location
A second user can be configured in the same way:
/
|--userB/ <-- maps to a location dedicated to UserB
|--group/ <-- maps to a shared location
Both userA
and userB
have their own folder.
They also have a group
folder mapped for sharing files.
Use case 3: multi-cloud transfer
You can use SFTP Gateway to transfer files between cloud providers:
/
|--aws-folder/ <-- maps to an S3 bucket
|--azure-folder/ <-- maps to an Azure Blob Storage Account
|--google-folder/ <-- maps to an Google Cloud bucket
This configuration lets you drag and drop files between AWS, Azure and Google Cloud.
Folder behavior
Folders are logical mappings that map an SFTP folder to a cloud location.
Deleting a Folder only deletes the mapping -- it does not delete the underlying objects in Cloud Storage.
Also, the folder will not appear in Cloud Storage until you have logged in as the SFTP user and uploaded a file. This is because Cloud Storage prunes empty file paths.