git-annex/doc/special_remotes/S3.mdwn
Joey Hess 0e44c252c8
avoid getting creds from environment during autoenable
When autoenabling special remotes of type S3, weddav, or glacier, do not
take login credentials from environment variables, as the user may not be
expecting the autoenable to happen, and may have those set for other
purposes.
2021-03-17 09:41:12 -04:00

151 lines
6.6 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This special remote type stores file contents in a bucket in Amazon S3
or a similar service.
See [[tips/using_Amazon_S3]],
[[tips/Internet_Archive_via_S3]], and [[tips/using_Google_Cloud_Storage]]
for usage examples.
## configuration
The standard environment variables `AWS_ACCESS_KEY_ID` and
`AWS_SECRET_ACCESS_KEY` are used to supply login credentials for S3. You
need to set these only when running `git annex initremote` (or
`enableremote`), as they will be cached in a file only you can read inside
the local git repository. If youre working with temporary security
credentials, you can also set the `AWS_SESSION_TOKEN` environment variable.
A number of parameters can be passed to `git annex initremote` to configure
the S3 remote.
* `encryption` - One of "none", "hybrid", "shared", or "pubkey".
See [[encryption]].
* `keyid` - Specifies the gpg key to use for [[encryption]].
* `chunk` - Enables [[chunking]] when storing large files.
`chunk=1MiB` is a good starting point for chunking.
* `embedcreds` - Optional. Set to "yes" embed the login credentials inside
the git repository, which allows other clones to also access them. This is
the default when gpg encryption is enabled; the credentials are stored
encrypted and only those with the repository's keys can access them.
It is not the default when using shared encryption, or no encryption.
Think carefully about who can access your repository before using
embedcreds without gpg encryption.
* `datacenter` - Defaults to "US". Other values include "EU" (which is EU/Ireland),
"us-west-1", "us-west-2", "ap-southeast-1", "ap-southeast-2", and
"sa-east-1".
* `storageclass` - Default is "STANDARD".
Consult S3 provider documentation for pricing details and available
storage classes. For example, the s3cmd(1) man page lists valid storage class names for Amazon S3.
When using Amazon S3,
if the remote will be used for backup or archival,
and so its files are Infrequently Accessed, "STANDARD_IA" is a
good choice to save money (requires a git-annex built with aws-0.13.0).
If you have configured git-annex to preserve
multiple [[copies]], also consider setting this to "ONEZONE_IA"
to save even more money.
When using Google Cloud Storage, to make a nearline bucket, set this to
"NEARLINE". (Requires a git-annex built with aws-0.13.0)
Note that changing the storage class of an existing S3 remote will
affect new objects sent to the remote, but not objects already
stored there.
* `host` - Specify in order to use a different, S3 compatable
service.
* `protocol` - Either "http" (the default) or "https". Setting
protocol=https implies port=443.
This option was added in git-annex version 7.20190322; to make
a special remote that uses http with older versions of git-annex,
explicitly specify port=443.
* `port` - Specify the port to connect to. Only needed when using a service
on an unusual port. Setting port=443 implies protocol=https.
* `requeststyle` - Set to "path" to use path style requests, instead of the
default DNS style requests. This is needed with some S3 services.
If you get an error about a host name not existing, it's a good
indication that you need to use this.
* `signature` - This controls the S3 signature version to use.
"v2" is currently the default, "v4" is needed to use some S3 services.
If you get some kind of authentication error, try "v4".
* `bucket` - S3 requires that buckets have a globally unique name,
so by default, a bucket name is chosen based on the remote name
and UUID. This can be specified to pick a bucket name.
* `versioning` - Indicate whether the S3 bucket should have versioning
enabled. Set to "yes" to enable.
Enabling versioning along with "exporttree=yes"
allows git-annex to access old versions of files that were
exported to the special remote by [[git-annex export|git-annex-export]].
And enabling versioning along with "importtree=yes"
allows [[git-annex import|git-annex-import]] to import the whole
history of files in the bucket, synthesizing a series of git commits.
Note that git-annex does not support dropping content from versioned
S3 buckets, since the versioning preserves the content.
* `exporttree` - Set to "yes" to make this special remote usable
by [[git-annex export|git-annex-export]].
It will not be usable as a general-purpose special remote.
* `importtree` - Set to "yes" to make this special remote usable
by [[git-annex-import]]. When set in combination with exporttree,
this lets files be imported from it, and changes exported back to it.
Note that exporting files to a S3 bucket may overwrite changes that
have been made to files in the bucket by other software since the last
time git-annex imported from the bucket. When versioning is enabled,
the content of files overwritten in this way can still be recovered,
but you may have to look through the git history to find them.
When versioning is not enabled, this risks data loss, and so git-annex
will not let you enable a remote with that configuration unless forced.
* `public` - Set to "yes" to allow public read access to files sent
to the S3 remote. This is accomplished by setting an ACL when each
file is uploaded to the remote. So, changes to this setting will
only affect subseqent uploads.
* `publicurl` - Configure the URL that is used to download files
from the bucket. Using this in combination with public=yes allows
git-annex to download files from the S3 remote without needing to
know the S3 credentials.
* `partsize` - Amazon S3 only accepts uploads up to a certian file size,
and storing larger files requires a multipart upload process.
Setting `partsize=1GiB` is recommended for Amazon S3 when not using
chunking; this will cause multipart uploads to be done using parts
up to 1GiB in size. Note that setting partsize to less than 100MiB
will cause Amazon S3 to reject uploads.
This is not enabled by default, since other S3 implementations may
not support multipart uploads or have different limits,
but can be enabled or changed at any time.
* `fileprefix` - By default, git-annex places files in a tree rooted at the
top of the S3 bucket. When this is set, it's prefixed to the filenames
used. For example, you could set it to "foo/" in one special remote,
and to "bar/" in another special remote, and both special remotes could
then use the same bucket.
* `x-amz-meta-*` are passed through as http headers when storing keys
in S3.
* `x-archive-meta-*` are passed through as http headers when storing keys
in the Internet Archive. See
[the Internet Archive S3 interface documentation](https://archive.org/help/abouts3.txt)
for example headers.