GetService
consul..Service provides details about a specific Consul service in a
given datacenter. The results include a list of nodes advertising the specified
service, the node’s IP address, port number, node ID, etc. By specifying a
different datacenter in the query_options it is possible to retrieve a list of
services from a different WAN-attached Consul datacenter.
This data source is different from the consul..getServices (plural) data
source, which provides a summary of the current Consul services.
Using GetService
function getService(args: GetServiceArgs, opts?: InvokeOptions): Promise<GetServiceResult>function get_service(datacenter=None, name=None, query_options=None, tag=None, opts=None)func LookupService(ctx *Context, args *LookupServiceArgs, opts ...InvokeOption) (*LookupServiceResult, error)Note: This function is named
LookupServicein the Go SDK.
public static class GetService {
public static Task<GetServiceResult> InvokeAsync(GetServiceArgs args, InvokeOptions? opts = null)
}The following arguments are supported:
- Name string
The service name to select.
- Datacenter string
The Consul datacenter to query. Defaults to the same value found in
query_optionsparameter specified below, or if that is empty, thedatacentervalue found in the Consul agent that this provider is configured to talk to.- Query
Options List<GetService Query Option Args> See below.
- Tag string
A single tag that can be used to filter the list of nodes to return based on a single matching tag..
- Name string
The service name to select.
- Datacenter string
The Consul datacenter to query. Defaults to the same value found in
query_optionsparameter specified below, or if that is empty, thedatacentervalue found in the Consul agent that this provider is configured to talk to.- Query
Options []GetService Query Option See below.
- Tag string
A single tag that can be used to filter the list of nodes to return based on a single matching tag..
- name string
The service name to select.
- datacenter string
The Consul datacenter to query. Defaults to the same value found in
query_optionsparameter specified below, or if that is empty, thedatacentervalue found in the Consul agent that this provider is configured to talk to.- query
Options GetService Query Option[] See below.
- tag string
A single tag that can be used to filter the list of nodes to return based on a single matching tag..
- name str
The service name to select.
- datacenter str
The Consul datacenter to query. Defaults to the same value found in
query_optionsparameter specified below, or if that is empty, thedatacentervalue found in the Consul agent that this provider is configured to talk to.- query_
options List[GetService Query Option] See below.
- tag str
A single tag that can be used to filter the list of nodes to return based on a single matching tag..
GetService Result
The following output properties are available:
- Id string
The provider-assigned unique ID for this managed resource.
- Name string
The name of the service
- Services
List<Get
Service Service> A list of nodes and details about each endpoint advertising a service. Each element in the list is a map of attributes that correspond to each individual node. The list of per-node attributes is detailed below.
- Datacenter string
The datacenter the keys are being read from to.
- Query
Options List<GetService Query Option> - Tag string
The name of the tag used to filter the list of nodes in
service.
- Id string
The provider-assigned unique ID for this managed resource.
- Name string
The name of the service
- Services
[]Get
Service Service A list of nodes and details about each endpoint advertising a service. Each element in the list is a map of attributes that correspond to each individual node. The list of per-node attributes is detailed below.
- Datacenter string
The datacenter the keys are being read from to.
- Query
Options []GetService Query Option - Tag string
The name of the tag used to filter the list of nodes in
service.
- id string
The provider-assigned unique ID for this managed resource.
- name string
The name of the service
- services
Get
Service Service[] A list of nodes and details about each endpoint advertising a service. Each element in the list is a map of attributes that correspond to each individual node. The list of per-node attributes is detailed below.
- datacenter string
The datacenter the keys are being read from to.
- query
Options GetService Query Option[] - tag string
The name of the tag used to filter the list of nodes in
service.
- id str
The provider-assigned unique ID for this managed resource.
- name str
The name of the service
- services
List[Get
Service Service] A list of nodes and details about each endpoint advertising a service. Each element in the list is a map of attributes that correspond to each individual node. The list of per-node attributes is detailed below.
- datacenter str
The datacenter the keys are being read from to.
- query_
options List[GetService Query Option] - tag str
The name of the tag used to filter the list of nodes in
service.
Supporting Types
GetServiceQueryOption
- Allow
Stale bool When
true, the default, allow responses from Consul servers that are followers.- Datacenter string
The Consul datacenter to query. Defaults to the same value found in
query_optionsparameter specified below, or if that is empty, thedatacentervalue found in the Consul agent that this provider is configured to talk to.- Namespace string
The namespace to lookup the service.
- Near string
- Node
Meta Dictionary<string, string> - Require
Consistent bool When
trueforce the client to perform a read on at least quorum servers and verify the result is the same. Defaults tofalse.- Token string
Specify the Consul ACL token to use when performing the request. This defaults to the same API token configured by the
consulprovider but may be overriden if necessary.- Wait
Index int Index number used to enable blocking quereis.
- Wait
Time string Max time the client should wait for a blocking query to return.
- Allow
Stale bool When
true, the default, allow responses from Consul servers that are followers.- Datacenter string
The Consul datacenter to query. Defaults to the same value found in
query_optionsparameter specified below, or if that is empty, thedatacentervalue found in the Consul agent that this provider is configured to talk to.- Namespace string
The namespace to lookup the service.
- Near string
- Node
Meta map[string]string - Require
Consistent bool When
trueforce the client to perform a read on at least quorum servers and verify the result is the same. Defaults tofalse.- Token string
Specify the Consul ACL token to use when performing the request. This defaults to the same API token configured by the
consulprovider but may be overriden if necessary.- Wait
Index int Index number used to enable blocking quereis.
- Wait
Time string Max time the client should wait for a blocking query to return.
- allow
Stale boolean When
true, the default, allow responses from Consul servers that are followers.- datacenter string
The Consul datacenter to query. Defaults to the same value found in
query_optionsparameter specified below, or if that is empty, thedatacentervalue found in the Consul agent that this provider is configured to talk to.- namespace string
The namespace to lookup the service.
- near string
- node
Meta {[key: string]: string} - require
Consistent boolean When
trueforce the client to perform a read on at least quorum servers and verify the result is the same. Defaults tofalse.- token string
Specify the Consul ACL token to use when performing the request. This defaults to the same API token configured by the
consulprovider but may be overriden if necessary.- wait
Index number Index number used to enable blocking quereis.
- wait
Time string Max time the client should wait for a blocking query to return.
- allow
Stale bool When
true, the default, allow responses from Consul servers that are followers.- datacenter str
The Consul datacenter to query. Defaults to the same value found in
query_optionsparameter specified below, or if that is empty, thedatacentervalue found in the Consul agent that this provider is configured to talk to.- namespace str
The namespace to lookup the service.
- near str
- node_
meta Dict[str, str] - require
Consistent bool When
trueforce the client to perform a read on at least quorum servers and verify the result is the same. Defaults tofalse.- token str
Specify the Consul ACL token to use when performing the request. This defaults to the same API token configured by the
consulprovider but may be overriden if necessary.- wait
Index float Index number used to enable blocking quereis.
- wait
Time str Max time the client should wait for a blocking query to return.
GetServiceService
See the output API doc for this type.
See the output API doc for this type.
See the output API doc for this type.
- Address string
- Create
Index string - Enable
Tag stringOverride - Id string
- Meta Dictionary<string, string>
- Modify
Index string - Name string
The service name to select.
- Node
Address string - Node
Id string The Node ID of the Consul agent advertising the service. *
node_meta- Node meta data tag information, if any. *node_name- The name of the Consul node. *address- The IP address of the service. If theServiceAddressin the Consul catalog is empty, this value is automatically populated with thenode_address(theAddressin the Consul Catalog). *enable_tag_override- Whether service tags can be overridden on this service. *id- A unique service instance identifier. *name- The name of the service. *port- Port number of the service. *tagged_addresses- List of explicit LAN and WAN IP addresses for the agent. *tags- List of tags for the service. *meta- Service meta data tag information, if any.- Node
Meta Dictionary<string, string> - Node
Name string - Port string
- Tagged
Addresses Dictionary<string, string> - List<string>
- Address string
- Create
Index string - Enable
Tag stringOverride - Id string
- Meta map[string]string
- Modify
Index string - Name string
The service name to select.
- Node
Address string - Node
Id string The Node ID of the Consul agent advertising the service. *
node_meta- Node meta data tag information, if any. *node_name- The name of the Consul node. *address- The IP address of the service. If theServiceAddressin the Consul catalog is empty, this value is automatically populated with thenode_address(theAddressin the Consul Catalog). *enable_tag_override- Whether service tags can be overridden on this service. *id- A unique service instance identifier. *name- The name of the service. *port- Port number of the service. *tagged_addresses- List of explicit LAN and WAN IP addresses for the agent. *tags- List of tags for the service. *meta- Service meta data tag information, if any.- Node
Meta map[string]string - Node
Name string - Port string
- Tagged
Addresses map[string]string - []string
- address string
- create
Index string - enable
Tag stringOverride - id string
- meta {[key: string]: string}
- modify
Index string - name string
The service name to select.
- node
Address string - node
Id string The Node ID of the Consul agent advertising the service. *
node_meta- Node meta data tag information, if any. *node_name- The name of the Consul node. *address- The IP address of the service. If theServiceAddressin the Consul catalog is empty, this value is automatically populated with thenode_address(theAddressin the Consul Catalog). *enable_tag_override- Whether service tags can be overridden on this service. *id- A unique service instance identifier. *name- The name of the service. *port- Port number of the service. *tagged_addresses- List of explicit LAN and WAN IP addresses for the agent. *tags- List of tags for the service. *meta- Service meta data tag information, if any.- node
Meta {[key: string]: string} - node
Name string - port string
- tagged
Addresses {[key: string]: string} - string[]
- address str
- create
Index str - enable
Tag strOverride - id str
- meta Dict[str, str]
- modify
Index str - name str
The service name to select.
- node
Address str - node
Id str The Node ID of the Consul agent advertising the service. *
node_meta- Node meta data tag information, if any. *node_name- The name of the Consul node. *address- The IP address of the service. If theServiceAddressin the Consul catalog is empty, this value is automatically populated with thenode_address(theAddressin the Consul Catalog). *enable_tag_override- Whether service tags can be overridden on this service. *id- A unique service instance identifier. *name- The name of the service. *port- Port number of the service. *tagged_addresses- List of explicit LAN and WAN IP addresses for the agent. *tags- List of tags for the service. *meta- Service meta data tag information, if any.- node
Name str - node_
meta Dict[str, str] - port str
- tagged
Addresses Dict[str, str] - List[str]
Package Details
- Repository
- https://github.com/pulumi/pulumi-consul
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
consulTerraform Provider.