confluent_flink_region
describes a Flink cluster data source.
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_flink_region" "example" {
cloud = "AWS"
region = "us-east-1"
}
output "example" {
value = data.confluent_flink_region.example
}
The following arguments are supported:
cloud
- (Required String) The cloud service provider that hosts the region. Accepted values are: AWS
, AZURE
, and GCP
.region
- (Required String) The cloud service provider region, for example, us-east-1
.In addition to the preceding arguments, the following attributes are exported:
id
- (Required String) The ID of the Flink region, for example, aws.us-east-1
.api_version
- (Required String) An API Version of the Flink region, for example, fcpm/v2
.kind
- (Required String) A kind of the Flink region, for example, Region
.rest_endpoint
- (Required String) The HTTP endpoint of the Flink region, for example, https://flink.us-east-1.aws.confluent.cloud
.