Provides uniform access to cloud storage services for nushell.
cloud ls
- List the filenames, sizes, modificationtime , etags, and versions of a cloud location.cloud open
- Load a file into a cell, converting to table if possible (avoid by appending '--raw').cloud rm
- Remove a file from cloud sotragecloud save
- Save a file to cloud storage- AWS S3 support
- Coming Soon: Azure support
- Coming Soon: Google cloud support
cargo install nu_plugin_cloud
plugin add ~/.cargo/bin/nu_plugin_cloud
plugin use cloud
git clone https://github.com/ayax79/nu_plugin_cloud.git
cd nu_plugin_cloud
cargo install --path .
plugin add ~/.cargo/bin/nu_plugin_cloud
plugin use cloud
Tip
This plugin will turn of plugin GC when any operation happens.
To turn plugin GC back off and query internal caches, run:
cloud cache-clear
Configuration for AWS uses the standard Configuration and Credential Files. To change your profile, ensure that the AWS_PROFILE environment variable is set to the desired profile.
For SSO, the AWS CLI is required to configure and login. To setup AWS SSO:
- follow the steps on Configure the AWS CLI with IAM identity Center authentication.
- login with
aws sso login
This plugin uses the aws_config crate. It is very unforgiving of miss configurations.
It will work if the profile includes only the sso_session, sso_account_id, and sso_role_name. Don't include sso_start_url in the profile section for instance.
[profile my-profile]
sso_session = my-sso
sso_account_id = <numeric account id>
sso_role_name = my-iam-role
region = us-east-1
output = json
[sso-session my-sso]
sso_start_url = https://d-92677e5ab0.awsapps.com/start
sso_region = us-west-2
sso_registration_scopes = sso:account:access
There are two types of supported non-cloud storage types, in-memory and file system. It can be useful to use these for testing purposes.
Save a file from memory:
[[a b]; [1 2]] | cloud save memory:/foo.csv
Load a file from memory:
cloud open memory:/foo.csv
List files in memory:
cloud ls memory:/foo.csv
Save a file from the local filesystem:
[[a b]; [1 2]] | cloud save file:///tmp/test/foo.csv
Load a file from the local filesystem:
cloud open file:///tmp/test/foo.csv
List files in the local filesystem:
cloud ls file:///tmp/test/foo.csv