Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 0 additions & 9 deletions github/data_source_github_release.go
Original file line number Diff line number Diff line change
Expand Up @@ -82,11 +82,6 @@ func dataSourceGithubRelease() *schema.Resource {
Type: schema.TypeString,
Computed: true,
},
"asserts_url": {
Type: schema.TypeString,
Computed: true,
Deprecated: "use assets_url instead",
},
"upload_url": {
Type: schema.TypeString,
Computed: true,
Expand Down Expand Up @@ -231,10 +226,6 @@ func dataSourceGithubReleaseRead(d *schema.ResourceData, meta any) error {
if err != nil {
return err
}
err = d.Set("asserts_url", release.GetAssetsURL()) // Deprecated, original version of assets_url
if err != nil {
return err
}
err = d.Set("upload_url", release.GetUploadURL())
if err != nil {
return err
Expand Down
1 change: 0 additions & 1 deletion website/docs/d/release.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,6 @@ data "github_release" "example" {
* `url` - Base URL of the release
* `html_url` - URL directing to detailed information on the release
* `assets_url` - URL of any associated assets with the release
* `asserts_url` - **Deprecated**: Use `assets_url` resource instead
* `upload_url` - URL that can be used to upload Assets to the release
* `zipball_url` - Download URL of a specific release in `zip` format
* `tarball_url` - Download URL of a specific release in `tar.gz` format
Expand Down