Data Source: oci_devops_repository_refs
This data source provides the list of Repository Refs in Oracle Cloud Infrastructure Devops service.
Returns a list of references.
Example Usage
data "oci_devops_repository_refs" "test_repository_refs" {
#Required
repository_id = oci_devops_repository.test_repository.id
#Optional
commit_id = oci_devops_commit.test_commit.id
ref_name = var.repository_ref_ref_name
ref_type = var.repository_ref_ref_type
}
Argument Reference
The following arguments are supported:
commit_id
- (Applicable when ref_type=BRANCH) Commit ID in a repository.ref_name
- (Optional) A filter to return only resources that match the given reference name.ref_type
- (Optional) Reference type to distinguish between branch and tag. If it is not specified, all references are returned.repository_id
- (Required) Unique repository identifier.
Attributes Reference
The following attributes are exported:
repository_ref_collection
- The list of repository_ref_collection.
RepositoryRef Reference
The following attributes are exported:
commit_id
- Commit ID pointed to by the new branch.full_ref_name
- Unique full reference name inside a repository.object_id
- SHA-1 hash value of the object pointed to by the tag.ref_name
- Unique reference name inside a repository.ref_type
- The type of reference (BRANCH or TAG).repository_id
- The OCID of the repository containing the reference.defined_tags
- Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example:{"foo-namespace.bar-key": "value"}
freeform_tags
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. See Resource Tags. Example:{"bar-key": "value"}