Data Source: tfe_registry_providers

Use this data source to get information about public and private providers in the private registry.

Example Usage

All providers:

data "tfe_registry_providers" "all" {
  organization = "my-org-name"
}

All private providers:

data "tfe_registry_providers" "private" {
  organization  = "my-org-name"
  registry_name = "private"
}

Providers with "hashicorp" in their namespace or name:

data "tfe_registry_providers" "hashicorp" {
  organization  = "my-org-name"
  search        = "hashicorp"
}

Argument Reference

The following arguments are supported:

Attributes Reference