Skip to content

Latest commit

 

History

History
66 lines (42 loc) · 1.54 KB

feed.html.markdown

File metadata and controls

66 lines (42 loc) · 1.54 KB
layout page_title description
azuredevops
AzureDevops: azuredevops_feed
Use this data source to access information about existing Feed within a given project in Azure DevOps.

Data Source: azuredevops_feed

Use this data source to access information about existing Feed within a given project in Azure DevOps.

Example Usage

Basic Example

data "azuredevops_feed" "example" {
  name = "releases"
}

Access feed within a project

data "azuredevops_project" "example" {
  name = "Example Project"
}

data "azuredevops_feed" "example" {
  name       = "releases"
  project_id = data.azuredevops_project.example.id
}

Argument Reference

The following arguments are supported:

  • name - (Required) The Name of the Feed.

  • feed_id - (Required) The ID of the Feed.

~> Note Only one of name or feed_id can be set at the same time.


  • project_id - (Optional) ID of the Project Feed is created in.

Attributes Reference

The following attributes are exported:

  • name - The name of the Feed.

  • feed_id - The ID of the Feed.

  • project_id - The ID of the Project.

Relevant Links

Timeouts

The timeouts block allows you to specify timeouts for certain actions:

  • read - (Defaults to 5 minute) Used when retrieving the Feed.