alicloud_service_mesh_extension_providers

This data source provides the Service Mesh Extension Providers of the current Alibaba Cloud user.

Example Usage

Basic Usage

data "alicloud_service_mesh_extension_providers" "ids" {
  ids             = ["example_id"]
  service_mesh_id = "example_service_mesh_id"
  type            = "httpextauth"
}

output "service_mesh_extension_providers_id_1" {
  value = data.alicloud_service_mesh_extension_providers.ids.providers.0.id
}

data "alicloud_service_mesh_extension_providers" "nameRegex" {
  name_regex      = "^my-ServiceMeshExtensionProvider"
  service_mesh_id = "example_service_mesh_id"
  type            = "httpextauth"
}

output "service_mesh_extension_providers_id_2" {
  value = data.alicloud_service_mesh_extension_providers.nameRegex.providers.0.id
}

Argument Reference

The following arguments are supported:

Attributes Reference

The following attributes are exported in addition to the arguments listed above: