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. |
Use this data source to access information about existing Feed within a given project in Azure DevOps.
data "azuredevops_feed" "example" {
name = "releases"
}
data "azuredevops_project" "example" {
name = "Example Project"
}
data "azuredevops_feed" "example" {
name = "releases"
project_id = data.azuredevops_project.example.id
}
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.
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.
The timeouts
block allows you to specify timeouts for certain actions:
read
- (Defaults to 5 minute) Used when retrieving the Feed.