Files
terraform-provider-bitbucke…/docusaurus/docs/data_groups.md
2019-10-14 15:50:22 -07:00

587 B

id, title
id title
data_bitbucketserver_groups bitbucketserver_groups

This data source allows you to retrieve a list of groups, optionally matching the supplied filter.

Example Usage

data "bitbucketserver_groups" "all" { }

Applying a Custom Filter

Find any groups starting with dev.

data "bitbucketserver_groups" "dev-groups" {
  filter = "dev"
}

Argument Reference

  • filter - Optional. If specified only group names containing the supplied string will be returned.

Attribute Reference

  • groups - List of maps containing name key.