-
Notifications
You must be signed in to change notification settings - Fork 68
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fdf7390
commit 8b9bdc6
Showing
1 changed file
with
74 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
# Subcommands | ||
commands: | ||
config: | ||
args: config | ||
sync: | ||
args: sync | ||
|
||
name: rclone | ||
namespace: rclone | ||
pip_url: rclone-bin==1.65.2 | ||
settings: | ||
|
||
# Global settings | ||
- env: RCLONE_LOG_LEVEL | ||
kind: options | ||
name: log_level | ||
options: | ||
- label: DEBUG | ||
value: DEBUG | ||
- label: INFO | ||
value: INFO | ||
- label: NOTICE | ||
value: NOTICE | ||
- label: ERROR | ||
value: ERROR | ||
- kind: boolean | ||
env: RCLONE_USE_JSON_LOG | ||
name: use_json_log | ||
- description: IO idle timeout (default 5m0s) | ||
kind: integer | ||
name: timeout | ||
|
||
# Local settings | ||
- description: Force the filesystem to report itself as case insensitive. | ||
env: RCLONE_LOCAL_CASE_SENSITIVE | ||
kind: boolean | ||
name: local.case_sensitive | ||
|
||
# S3 | ||
- description: AWS Access Key ID | ||
env: RCLONE_S3_ACCESS_KEY_ID | ||
kind: string | ||
name: s3.access_key_id | ||
- description: Endpoint for S3 API | ||
env: RCLONE_S3_ENDPOINT | ||
kind: string | ||
name: s3.endpoint | ||
- description: Get AWS credentials from runtime (environment variables or EC2/ECS meta data if no env vars) | ||
kind: boolean | ||
name: env_auth | ||
- description: S3 provider | ||
kind: options | ||
name: s3.provider | ||
options: | ||
- label: AWS | ||
value: AWS | ||
- label: Ceph | ||
value: Ceph | ||
- label: DigitalOcean Spaces | ||
value: DigitalOcean | ||
- label: Minio | ||
value: Minio | ||
- description: Region to connect to | ||
env: RCLONE_S3_REGION | ||
kind: string | ||
name: s3.region | ||
- description: AWS Secret Access Key (password) | ||
env: RCLONE_S3_SECRET_ACCESS_KEY | ||
kind: password | ||
name: s3.secret_access_key | ||
sensitive: true | ||
usage: | | ||
meltano invoke rclone:config | ||
meltano invoke rclone:sync source:path dest:path |