Skip to main content

signaloid-cli buckets update

Update AWS S3 bucket configuration.

Synopsis

signaloid-cli buckets update --bucket-id <id> [options]

Options

OptionRequiredDescription
--bucket-id <id>YesBucket ID
--name <name>NoNew bucket name
--mount-path <path>NoNew mount path
--readNoEnable/update read access
--writeNoEnable/update write access

Description

Updates an existing bucket configuration. You can modify the bucket name, mount path, and access permissions. The bucket ID is required to identify which bucket to update.

Use this command to change settings without needing to delete and recreate the bucket configuration.

Examples

signaloid-cli buckets update \
--bucket-id bucket_abc123 \
--write

Notes

  • At least one optional parameter must be provided along with the bucket ID
  • Changes to mount paths will affect any running tasks using the bucket
  • Access permissions can be updated without affecting existing data

Troubleshooting

Issue: Bucket not found error

  • Verify the bucket ID is correct using signaloid-cli buckets list
  • Ensure the bucket hasn't been deleted

Issue: Mount path update fails

  • Check that the new mount path doesn't conflict with other buckets
  • Ensure no active tasks are using the current mount path

See Also