You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

57 lines
1.6 KiB

  1. key: s3generic
  2. title: S3 Generic
  3. description: Generic storage module for S3-compatible services.
  4. author: requarks.io
  5. logo: https://static.requarks.io/logo/aws-s3-alt.svg
  6. website: https://wiki.js.org
  7. isAvailable: true
  8. supportedModes:
  9. - push
  10. defaultMode: push
  11. schedule: false
  12. props:
  13. endpoint:
  14. type: String
  15. title: Endpoint URI
  16. hint: The full S3-compliant endpoint URI.
  17. default: https://service.region.example.com
  18. order: 1
  19. bucket:
  20. type: String
  21. title: Unique bucket name
  22. hint: The unique bucket name to create (e.g. wiki-johndoe)
  23. order: 2
  24. accessKeyId:
  25. type: String
  26. title: Access Key ID
  27. hint: The Access Key ID.
  28. order: 3
  29. secretAccessKey:
  30. type: String
  31. title: Access Key Secret
  32. hint: The Access Key Secret for the Access Key ID above.
  33. sensitive: true
  34. order: 4
  35. sslEnabled:
  36. type: Boolean
  37. title: Use SSL
  38. hint: Whether to enable SSL for requests
  39. default: true
  40. order: 5
  41. s3ForcePathStyle:
  42. type: Boolean
  43. title: Force Path Style for S3 objects
  44. hint: Whether to force path style URLs for S3 objects.
  45. default: false
  46. order: 6
  47. s3BucketEndpoint:
  48. type: Boolean
  49. title: Single Bucket Endpoint
  50. hint: Whether the provided endpoint addresses an individual bucket.
  51. default: false
  52. order: 7
  53. actions:
  54. - handler: exportAll
  55. label: Export All
  56. hint: Output all content from the DB to the external service, overwriting any existing data. If you enabled this module after content was created or you temporarily disabled it, you'll want to execute this action to add the missing content.