Skip to content

Commit da8b2a3

Browse files
committed
tweak wording
1 parent be949de commit da8b2a3

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

docs/data-sources/feeds.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@ Read-Only:
4646

4747
- `access_key` (String) The AWS access key to use when authenticating against Amazon Web Services.
4848
- `api_version` (String)
49-
- `delete_packages_associated_with_releases` (Boolean) When true, Octopus does not need to keep packages used by releases and runbook runs on the dashboard.
50-
- `delete_unreleased_packages_after_days` (Number)
49+
- `delete_packages_associated_with_releases` (Boolean) When true, only packages associated with releases or runbook runs on the dashboard are kept. When false, packages associated with any releases or runbook runs are kept.
50+
- `delete_unreleased_packages_after_days` (Number) Sets the package retention in days. Set delete_packages_associated_with_releases to choose which packages are kept.
5151
- `download_attempts` (Number) The number of times a deployment should attempt to download a package from this feed before failing.
5252
- `download_retry_backoff_seconds` (Number) The number of seconds to apply as a linear back off between download attempts.
5353
- `feed_type` (String) A filter to search by feed type. Valid feed types are `AwsElasticContainerRegistry`, `BuiltIn`, `Docker`, `GitHub`, `Helm`, `Maven`, `NuGet`, `S3`, `OciRegistry` or `OctopusProject`.

octopusdeploy_framework/schemas/feeds.go

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,10 +108,11 @@ func (f FeedsSchema) GetDatasourceSchema() datasourceSchema.Schema {
108108
},
109109
},
110110
"delete_unreleased_packages_after_days": datasourceSchema.Int64Attribute{
111-
Computed: true,
111+
Description: "Sets the package retention in days. Set delete_packages_associated_with_releases to choose which packages are kept.",
112+
Computed: true,
112113
},
113114
"delete_packages_associated_with_releases": datasourceSchema.BoolAttribute{
114-
Description: "When true, Octopus does not need to keep packages used by releases and runbook runs on the dashboard.",
115+
Description: "When true, only packages associated with releases or runbook runs on the dashboard are kept. When false, packages associated with any releases or runbook runs are kept.",
115116
Computed: true,
116117
},
117118
"access_key": datasourceSchema.StringAttribute{

0 commit comments

Comments
 (0)