1. Packages
  2. HashiCorp Consul
  3. API Docs
  4. getServices
Consul v3.11.0 published on Monday, Nov 20, 2023 by Pulumi

consul.getServices

Explore with Pulumi AI

consul logo
Consul v3.11.0 published on Monday, Nov 20, 2023 by Pulumi

    The consul.getServices data source returns a list of Consul services that have been registered with the Consul cluster in a given datacenter. 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.Service (singular) data source, which provides a detailed response about a specific Consul service.

    Using getServices

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function getServices(args: GetServicesArgs, opts?: InvokeOptions): Promise<GetServicesResult>
    function getServicesOutput(args: GetServicesOutputArgs, opts?: InvokeOptions): Output<GetServicesResult>
    def get_services(query_options: Optional[Sequence[GetServicesQueryOption]] = None,
                     opts: Optional[InvokeOptions] = None) -> GetServicesResult
    def get_services_output(query_options: Optional[pulumi.Input[Sequence[pulumi.Input[GetServicesQueryOptionArgs]]]] = None,
                     opts: Optional[InvokeOptions] = None) -> Output[GetServicesResult]
    func GetServices(ctx *Context, args *GetServicesArgs, opts ...InvokeOption) (*GetServicesResult, error)
    func GetServicesOutput(ctx *Context, args *GetServicesOutputArgs, opts ...InvokeOption) GetServicesResultOutput

    > Note: This function is named GetServices in the Go SDK.

    public static class GetServices 
    {
        public static Task<GetServicesResult> InvokeAsync(GetServicesArgs args, InvokeOptions? opts = null)
        public static Output<GetServicesResult> Invoke(GetServicesInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetServicesResult> getServices(GetServicesArgs args, InvokeOptions options)
    // Output-based functions aren't available in Java yet
    
    fn::invoke:
      function: consul:index/getServices:getServices
      arguments:
        # arguments dictionary

    The following arguments are supported:

    getServices Result

    The following output properties are available:

    Datacenter string

    The datacenter the keys are being read from to.

    Id string

    The provider-assigned unique ID for this managed resource.

    Names List<string>
    Services Dictionary<string, string>
    Tags Dictionary<string, string>

    A map of the tags found for each service. If more than one service shares the same tag, unique service names will be joined by whitespace (this is the inverse of services and can be used to lookup the services that match a single tag).

    QueryOptions List<GetServicesQueryOption>
    Datacenter string

    The datacenter the keys are being read from to.

    Id string

    The provider-assigned unique ID for this managed resource.

    Names []string
    Services map[string]string
    Tags map[string]string

    A map of the tags found for each service. If more than one service shares the same tag, unique service names will be joined by whitespace (this is the inverse of services and can be used to lookup the services that match a single tag).

    QueryOptions []GetServicesQueryOption
    datacenter String

    The datacenter the keys are being read from to.

    id String

    The provider-assigned unique ID for this managed resource.

    names List<String>
    services Map<String,String>
    tags Map<String,String>

    A map of the tags found for each service. If more than one service shares the same tag, unique service names will be joined by whitespace (this is the inverse of services and can be used to lookup the services that match a single tag).

    queryOptions List<GetServicesQueryOption>
    datacenter string

    The datacenter the keys are being read from to.

    id string

    The provider-assigned unique ID for this managed resource.

    names string[]
    services {[key: string]: string}
    tags {[key: string]: string}

    A map of the tags found for each service. If more than one service shares the same tag, unique service names will be joined by whitespace (this is the inverse of services and can be used to lookup the services that match a single tag).

    queryOptions GetServicesQueryOption[]
    datacenter str

    The datacenter the keys are being read from to.

    id str

    The provider-assigned unique ID for this managed resource.

    names Sequence[str]
    services Mapping[str, str]
    tags Mapping[str, str]

    A map of the tags found for each service. If more than one service shares the same tag, unique service names will be joined by whitespace (this is the inverse of services and can be used to lookup the services that match a single tag).

    query_options Sequence[GetServicesQueryOption]
    datacenter String

    The datacenter the keys are being read from to.

    id String

    The provider-assigned unique ID for this managed resource.

    names List<String>
    services Map<String>
    tags Map<String>

    A map of the tags found for each service. If more than one service shares the same tag, unique service names will be joined by whitespace (this is the inverse of services and can be used to lookup the services that match a single tag).

    queryOptions List<Property Map>

    Supporting Types

    GetServicesQueryOption

    AllowStale 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_options parameter specified below, or if that is empty, the datacenter value found in the Consul agent that this provider is configured to talk to.

    Namespace string

    The namespace to lookup the services.

    Near string
    NodeMeta Dictionary<string, string>
    Partition string
    RequireConsistent bool

    When true force the client to perform a read on at least quorum servers and verify the result is the same. Defaults to false.

    Token string

    Specify the Consul ACL token to use when performing the request. This defaults to the same API token configured by the consul provider but may be overridden if necessary.

    WaitIndex int

    Index number used to enable blocking queries.

    WaitTime string

    Max time the client should wait for a blocking query to return.

    AllowStale 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_options parameter specified below, or if that is empty, the datacenter value found in the Consul agent that this provider is configured to talk to.

    Namespace string

    The namespace to lookup the services.

    Near string
    NodeMeta map[string]string
    Partition string
    RequireConsistent bool

    When true force the client to perform a read on at least quorum servers and verify the result is the same. Defaults to false.

    Token string

    Specify the Consul ACL token to use when performing the request. This defaults to the same API token configured by the consul provider but may be overridden if necessary.

    WaitIndex int

    Index number used to enable blocking queries.

    WaitTime string

    Max time the client should wait for a blocking query to return.

    allowStale 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_options parameter specified below, or if that is empty, the datacenter value found in the Consul agent that this provider is configured to talk to.

    namespace String

    The namespace to lookup the services.

    near String
    nodeMeta Map<String,String>
    partition String
    requireConsistent Boolean

    When true force the client to perform a read on at least quorum servers and verify the result is the same. Defaults to false.

    token String

    Specify the Consul ACL token to use when performing the request. This defaults to the same API token configured by the consul provider but may be overridden if necessary.

    waitIndex Integer

    Index number used to enable blocking queries.

    waitTime String

    Max time the client should wait for a blocking query to return.

    allowStale 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_options parameter specified below, or if that is empty, the datacenter value found in the Consul agent that this provider is configured to talk to.

    namespace string

    The namespace to lookup the services.

    near string
    nodeMeta {[key: string]: string}
    partition string
    requireConsistent boolean

    When true force the client to perform a read on at least quorum servers and verify the result is the same. Defaults to false.

    token string

    Specify the Consul ACL token to use when performing the request. This defaults to the same API token configured by the consul provider but may be overridden if necessary.

    waitIndex number

    Index number used to enable blocking queries.

    waitTime 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_options parameter specified below, or if that is empty, the datacenter value found in the Consul agent that this provider is configured to talk to.

    namespace str

    The namespace to lookup the services.

    near str
    node_meta Mapping[str, str]
    partition str
    require_consistent bool

    When true force the client to perform a read on at least quorum servers and verify the result is the same. Defaults to false.

    token str

    Specify the Consul ACL token to use when performing the request. This defaults to the same API token configured by the consul provider but may be overridden if necessary.

    wait_index int

    Index number used to enable blocking queries.

    wait_time str

    Max time the client should wait for a blocking query to return.

    allowStale 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_options parameter specified below, or if that is empty, the datacenter value found in the Consul agent that this provider is configured to talk to.

    namespace String

    The namespace to lookup the services.

    near String
    nodeMeta Map<String>
    partition String
    requireConsistent Boolean

    When true force the client to perform a read on at least quorum servers and verify the result is the same. Defaults to false.

    token String

    Specify the Consul ACL token to use when performing the request. This defaults to the same API token configured by the consul provider but may be overridden if necessary.

    waitIndex Number

    Index number used to enable blocking queries.

    waitTime String

    Max time the client should wait for a blocking query to return.

    Package Details

    Repository
    HashiCorp Consul pulumi/pulumi-consul
    License
    Apache-2.0
    Notes

    This Pulumi package is based on the consul Terraform Provider.

    consul logo
    Consul v3.11.0 published on Monday, Nov 20, 2023 by Pulumi