diff --git a/docs/models/core/datasource.md b/docs/models/core/datasource.md index d16abdd10..0e18a2aae 100644 --- a/docs/models/core/datasource.md +++ b/docs/models/core/datasource.md @@ -14,15 +14,17 @@ The type of data source. Supported options include: * Local directory * git repository +* Amazon S3 bucket ### URL The URL identifying the remote source. Some examples are included below. -| Type | Example URL | -|------|-------------| -| Local | file:///var/my/data/source/ | -| git | https://https://github.com/my-organization/my-repo | +| Type | Example URL | +|-----------|----------------------------------------------------| +| Local | file:///path/to/my/data/ | +| git | https://github.com/my-organization/my-repo | +| Amazon S3 | https://s3.us-east-2.amazonaws.com/my-bucket-name/ | ### Status diff --git a/docs/release-notes/version-3.5.md b/docs/release-notes/version-3.5.md index ac2fab66b..792a244e4 100644 --- a/docs/release-notes/version-3.5.md +++ b/docs/release-notes/version-3.5.md @@ -10,7 +10,7 @@ The static home view has been replaced with a fully customizable dashboard. User #### Remote Data Sources ([#11558](https://github.com/netbox-community/netbox/issues/11558)) -NetBox now has the ability to synchronize arbitrary data from external sources through the new [DataSource](../models/core/datasource.md) and [DataFile](../models/core/datafile.md) models. Synchronized files are stored in the PostgreSQL database, and may be referenced and consumed by other NetBox models, such as export templates and config contexts. Currently, replication from local filesystem paths and from git repositories is supported, and we expect to add support for additional backends in the near future. +NetBox now has the ability to synchronize arbitrary data from external sources through the new [DataSource](../models/core/datasource.md) and [DataFile](../models/core/datafile.md) models. Synchronized files are stored in the PostgreSQL database, and may be referenced and consumed by other NetBox models, such as export templates and config contexts. Currently, replication from local filesystem paths, git repositories, and Amazon S3 buckets is supported, and we expect to introduce additional backends in the near future. #### Configuration Template Rendering ([#11559](https://github.com/netbox-community/netbox/issues/11559))