Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
aws configure --profile duracloud
Tip
titleSetting region for Lyrasis hosting

If you are a Lyrasis hosted DuraCloud client, the AWS is region is west-2. You can set this in a few ways:

1. Add --region directly to the command

This is the most explicit and overrides all other settings (profiles, config files, etc.)

Code Block
aws s3 ls --region us-west-2

With a profile:

Code Block
 s3 sync ./data s3://{stackname}-bucket --profile duracloud-pilot --region us-west-2

2. Set the region temporarily in your shell

This applies only to the current terminal session:

Code Block
export AWS_REGION=us-west-2

Then commands can be run without specifying the region

3. Set the region inside the profile

Code Block
[profile duracloud-pilot]
region = us-west-2
output = json


Cyberduck documentation

Cyberduck's documentation for setting up new connections: https://docs.cyberduck.io/cyberduck/connection/

...