confluent_identity_pool Data Source

General Availability

confluent_identity_pool describes an Identity Pool data source.

Example Usage

provider "confluent" {
  cloud_api_key    = var.confluent_cloud_api_key    # optionally use CONFLUENT_CLOUD_API_KEY env var
  cloud_api_secret = var.confluent_cloud_api_secret # optionally use CONFLUENT_CLOUD_API_SECRET env var
}

data "confluent_identity_pool" "example_using_id" {
  id = "pool-xyz456"
  identity_provider {
    id = "op-abc123"
  }
}

output "example_using_id" {
  value = data.confluent_identity_pool.example_using_id
}

data "confluent_identity_pool" "example_using_name" {
  display_name = "My Identity Pool"
  identity_provider {
    id = "op-abc123"
  }
}

output "example_using_name" {
  value = data.confluent_identity_pool.example_using_name
}

Argument Reference

The following arguments are supported:

Attributes Reference

In addition to the preceding arguments, the following attributes are exported:

The following attributes are exported: