1. Packages
  2. Openstack Provider
  3. API Docs
  4. loadbalancer
  5. getListenerV2
OpenStack v5.4.0 published on Wednesday, Nov 12, 2025 by Pulumi
openstack logo
OpenStack v5.4.0 published on Wednesday, Nov 12, 2025 by Pulumi

    Use this data source to get the ID of an OpenStack Load Balancer listener.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as openstack from "@pulumi/openstack";
    
    const listener1 = openstack.loadbalancer.getListenerV2({
        name: "listener_1",
    });
    
    import pulumi
    import pulumi_openstack as openstack
    
    listener1 = openstack.loadbalancer.get_listener_v2(name="listener_1")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-openstack/sdk/v5/go/openstack/loadbalancer"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := loadbalancer.GetListenerV2(ctx, &loadbalancer.GetListenerV2Args{
    			Name: pulumi.StringRef("listener_1"),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using OpenStack = Pulumi.OpenStack;
    
    return await Deployment.RunAsync(() => 
    {
        var listener1 = OpenStack.LoadBalancer.GetListenerV2.Invoke(new()
        {
            Name = "listener_1",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.openstack.loadbalancer.LoadbalancerFunctions;
    import com.pulumi.openstack.loadbalancer.inputs.GetListenerV2Args;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            final var listener1 = LoadbalancerFunctions.getListenerV2(GetListenerV2Args.builder()
                .name("listener_1")
                .build());
    
        }
    }
    
    variables:
      listener1:
        fn::invoke:
          function: openstack:loadbalancer:getListenerV2
          arguments:
            name: listener_1
    

    Using getListenerV2

    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 getListenerV2(args: GetListenerV2Args, opts?: InvokeOptions): Promise<GetListenerV2Result>
    function getListenerV2Output(args: GetListenerV2OutputArgs, opts?: InvokeOptions): Output<GetListenerV2Result>
    def get_listener_v2(listener_id: Optional[str] = None,
                        loadbalancer_id: Optional[str] = None,
                        name: Optional[str] = None,
                        protocol: Optional[str] = None,
                        protocol_port: Optional[int] = None,
                        region: Optional[str] = None,
                        tags: Optional[Sequence[str]] = None,
                        opts: Optional[InvokeOptions] = None) -> GetListenerV2Result
    def get_listener_v2_output(listener_id: Optional[pulumi.Input[str]] = None,
                        loadbalancer_id: Optional[pulumi.Input[str]] = None,
                        name: Optional[pulumi.Input[str]] = None,
                        protocol: Optional[pulumi.Input[str]] = None,
                        protocol_port: Optional[pulumi.Input[int]] = None,
                        region: Optional[pulumi.Input[str]] = None,
                        tags: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                        opts: Optional[InvokeOptions] = None) -> Output[GetListenerV2Result]
    func GetListenerV2(ctx *Context, args *GetListenerV2Args, opts ...InvokeOption) (*GetListenerV2Result, error)
    func GetListenerV2Output(ctx *Context, args *GetListenerV2OutputArgs, opts ...InvokeOption) GetListenerV2ResultOutput

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

    public static class GetListenerV2 
    {
        public static Task<GetListenerV2Result> InvokeAsync(GetListenerV2Args args, InvokeOptions? opts = null)
        public static Output<GetListenerV2Result> Invoke(GetListenerV2InvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetListenerV2Result> getListenerV2(GetListenerV2Args args, InvokeOptions options)
    public static Output<GetListenerV2Result> getListenerV2(GetListenerV2Args args, InvokeOptions options)
    
    fn::invoke:
      function: openstack:loadbalancer/getListenerV2:getListenerV2
      arguments:
        # arguments dictionary

    The following arguments are supported:

    ListenerId string
    The ID of the listener. Exactly one of name, listener_id is required to be set.
    LoadbalancerId string
    The ID of the load balancer associated with the requested listener.
    Name string
    The name of the listener. Exactly one of name, listener_id is required to be set.
    Protocol string
    The protocol of the requested listener.
    ProtocolPort int
    The port on which the requested listener accepts client traffic.
    Region string
    The region in which to obtain the V2 Load Balancer client. If omitted, the region argument of the provider is used.
    Tags List<string>
    A set of tags applied to the loadbalancer's listener. The loadbalancer' listener will be returned if it has all of the specified tags.
    ListenerId string
    The ID of the listener. Exactly one of name, listener_id is required to be set.
    LoadbalancerId string
    The ID of the load balancer associated with the requested listener.
    Name string
    The name of the listener. Exactly one of name, listener_id is required to be set.
    Protocol string
    The protocol of the requested listener.
    ProtocolPort int
    The port on which the requested listener accepts client traffic.
    Region string
    The region in which to obtain the V2 Load Balancer client. If omitted, the region argument of the provider is used.
    Tags []string
    A set of tags applied to the loadbalancer's listener. The loadbalancer' listener will be returned if it has all of the specified tags.
    listenerId String
    The ID of the listener. Exactly one of name, listener_id is required to be set.
    loadbalancerId String
    The ID of the load balancer associated with the requested listener.
    name String
    The name of the listener. Exactly one of name, listener_id is required to be set.
    protocol String
    The protocol of the requested listener.
    protocolPort Integer
    The port on which the requested listener accepts client traffic.
    region String
    The region in which to obtain the V2 Load Balancer client. If omitted, the region argument of the provider is used.
    tags List<String>
    A set of tags applied to the loadbalancer's listener. The loadbalancer' listener will be returned if it has all of the specified tags.
    listenerId string
    The ID of the listener. Exactly one of name, listener_id is required to be set.
    loadbalancerId string
    The ID of the load balancer associated with the requested listener.
    name string
    The name of the listener. Exactly one of name, listener_id is required to be set.
    protocol string
    The protocol of the requested listener.
    protocolPort number
    The port on which the requested listener accepts client traffic.
    region string
    The region in which to obtain the V2 Load Balancer client. If omitted, the region argument of the provider is used.
    tags string[]
    A set of tags applied to the loadbalancer's listener. The loadbalancer' listener will be returned if it has all of the specified tags.
    listener_id str
    The ID of the listener. Exactly one of name, listener_id is required to be set.
    loadbalancer_id str
    The ID of the load balancer associated with the requested listener.
    name str
    The name of the listener. Exactly one of name, listener_id is required to be set.
    protocol str
    The protocol of the requested listener.
    protocol_port int
    The port on which the requested listener accepts client traffic.
    region str
    The region in which to obtain the V2 Load Balancer client. If omitted, the region argument of the provider is used.
    tags Sequence[str]
    A set of tags applied to the loadbalancer's listener. The loadbalancer' listener will be returned if it has all of the specified tags.
    listenerId String
    The ID of the listener. Exactly one of name, listener_id is required to be set.
    loadbalancerId String
    The ID of the load balancer associated with the requested listener.
    name String
    The name of the listener. Exactly one of name, listener_id is required to be set.
    protocol String
    The protocol of the requested listener.
    protocolPort Number
    The port on which the requested listener accepts client traffic.
    region String
    The region in which to obtain the V2 Load Balancer client. If omitted, the region argument of the provider is used.
    tags List<String>
    A set of tags applied to the loadbalancer's listener. The loadbalancer' listener will be returned if it has all of the specified tags.

    getListenerV2 Result

    The following output properties are available:

    AdminStateUp bool
    The administrative state of the Listener.
    AllowedCidrs List<string>
    A list of IPv4, IPv6 or mix of both CIDRs.
    AlpnProtocols List<string>
    A list of ALPN protocols.
    ClientAuthentication string
    The TLS client authentication mode.
    ClientCaTlsContainerRef string
    The ref of the key manager service secret containing a PEM format client CA certificate bundle for TERMINATED_HTTPS listeners.
    ClientCrlContainerRef string
    The URI of the key manager service secret containing a PEM format CA revocation list file for TERMINATED_HTTPS listeners.
    ConnectionLimit int
    The maximum number of connections allowed for the Loadbalancer.
    DefaultPool string
    The default pool with which the Listener is associated.
    DefaultPoolId string
    The UUID of default pool.
    DefaultTlsContainerRef string
    A reference to a Barbican container of TLS secrets.
    Description string
    The description of the listener.
    HstsIncludeSubdomains bool
    Defines whether the includeSubDomains directive should be added to the Strict-Transport-Security HTTP response header.
    HstsMaxAge int
    The value of the max_age directive for the Strict-Transport-Security HTTP response header.
    HstsPreload bool
    Defines whether the preload directive should be added to the Strict-Transport-Security HTTP response header.
    Id string
    The provider-assigned unique ID for this managed resource.
    InsertHeaders Dictionary<string, string>
    A dictionary of optional headers to insert into the request before it is sent to the backend member.
    L7policies List<Pulumi.OpenStack.LoadBalancer.Outputs.GetListenerV2L7policy>
    L7policies are the L7 policies which are part of this listener.
    ListenerId string
    LoadbalancerId string
    Loadbalancers List<Pulumi.OpenStack.LoadBalancer.Outputs.GetListenerV2Loadbalancer>
    A list of load balancer IDs.
    Name string
    The name of the listener.
    OperatingStatus string
    The operating status of the resource.
    Pools List<Pulumi.OpenStack.LoadBalancer.Outputs.GetListenerV2Pool>
    Pools are the pools which are part of this listener.
    ProjectId string
    The owner (project/tenant) ID of the listener.
    Protocol string
    The protocol to loadbalance.
    ProtocolPort int
    The port on which to listen to client traffic that is associated with the Loadbalancer.
    ProvisioningStatus string
    The provisioning status of the Listener.
    Region string
    SniContainerRefs List<string>
    The list of references to TLS secrets.
    Tags List<string>
    Tags is a list of resource tags.
    TimeoutClientData int
    Frontend client inactivity timeout in milliseconds.
    TimeoutMemberConnect int
    Backend member connection timeout in milliseconds.
    TimeoutMemberData int
    Backend member inactivity timeout in milliseconds.
    TimeoutTcpInspect int
    Time, in milliseconds, to wait for additional TCP packets for content inspection.
    TlsCiphers string
    List of ciphers in OpenSSL format (colon-separated).
    TlsVersions List<string>
    A list of TLS protocol versions.
    AdminStateUp bool
    The administrative state of the Listener.
    AllowedCidrs []string
    A list of IPv4, IPv6 or mix of both CIDRs.
    AlpnProtocols []string
    A list of ALPN protocols.
    ClientAuthentication string
    The TLS client authentication mode.
    ClientCaTlsContainerRef string
    The ref of the key manager service secret containing a PEM format client CA certificate bundle for TERMINATED_HTTPS listeners.
    ClientCrlContainerRef string
    The URI of the key manager service secret containing a PEM format CA revocation list file for TERMINATED_HTTPS listeners.
    ConnectionLimit int
    The maximum number of connections allowed for the Loadbalancer.
    DefaultPool string
    The default pool with which the Listener is associated.
    DefaultPoolId string
    The UUID of default pool.
    DefaultTlsContainerRef string
    A reference to a Barbican container of TLS secrets.
    Description string
    The description of the listener.
    HstsIncludeSubdomains bool
    Defines whether the includeSubDomains directive should be added to the Strict-Transport-Security HTTP response header.
    HstsMaxAge int
    The value of the max_age directive for the Strict-Transport-Security HTTP response header.
    HstsPreload bool
    Defines whether the preload directive should be added to the Strict-Transport-Security HTTP response header.
    Id string
    The provider-assigned unique ID for this managed resource.
    InsertHeaders map[string]string
    A dictionary of optional headers to insert into the request before it is sent to the backend member.
    L7policies []GetListenerV2L7policy
    L7policies are the L7 policies which are part of this listener.
    ListenerId string
    LoadbalancerId string
    Loadbalancers []GetListenerV2Loadbalancer
    A list of load balancer IDs.
    Name string
    The name of the listener.
    OperatingStatus string
    The operating status of the resource.
    Pools []GetListenerV2Pool
    Pools are the pools which are part of this listener.
    ProjectId string
    The owner (project/tenant) ID of the listener.
    Protocol string
    The protocol to loadbalance.
    ProtocolPort int
    The port on which to listen to client traffic that is associated with the Loadbalancer.
    ProvisioningStatus string
    The provisioning status of the Listener.
    Region string
    SniContainerRefs []string
    The list of references to TLS secrets.
    Tags []string
    Tags is a list of resource tags.
    TimeoutClientData int
    Frontend client inactivity timeout in milliseconds.
    TimeoutMemberConnect int
    Backend member connection timeout in milliseconds.
    TimeoutMemberData int
    Backend member inactivity timeout in milliseconds.
    TimeoutTcpInspect int
    Time, in milliseconds, to wait for additional TCP packets for content inspection.
    TlsCiphers string
    List of ciphers in OpenSSL format (colon-separated).
    TlsVersions []string
    A list of TLS protocol versions.
    adminStateUp Boolean
    The administrative state of the Listener.
    allowedCidrs List<String>
    A list of IPv4, IPv6 or mix of both CIDRs.
    alpnProtocols List<String>
    A list of ALPN protocols.
    clientAuthentication String
    The TLS client authentication mode.
    clientCaTlsContainerRef String
    The ref of the key manager service secret containing a PEM format client CA certificate bundle for TERMINATED_HTTPS listeners.
    clientCrlContainerRef String
    The URI of the key manager service secret containing a PEM format CA revocation list file for TERMINATED_HTTPS listeners.
    connectionLimit Integer
    The maximum number of connections allowed for the Loadbalancer.
    defaultPool String
    The default pool with which the Listener is associated.
    defaultPoolId String
    The UUID of default pool.
    defaultTlsContainerRef String
    A reference to a Barbican container of TLS secrets.
    description String
    The description of the listener.
    hstsIncludeSubdomains Boolean
    Defines whether the includeSubDomains directive should be added to the Strict-Transport-Security HTTP response header.
    hstsMaxAge Integer
    The value of the max_age directive for the Strict-Transport-Security HTTP response header.
    hstsPreload Boolean
    Defines whether the preload directive should be added to the Strict-Transport-Security HTTP response header.
    id String
    The provider-assigned unique ID for this managed resource.
    insertHeaders Map<String,String>
    A dictionary of optional headers to insert into the request before it is sent to the backend member.
    l7policies List<GetListenerV2L7policy>
    L7policies are the L7 policies which are part of this listener.
    listenerId String
    loadbalancerId String
    loadbalancers List<GetListenerV2Loadbalancer>
    A list of load balancer IDs.
    name String
    The name of the listener.
    operatingStatus String
    The operating status of the resource.
    pools List<GetListenerV2Pool>
    Pools are the pools which are part of this listener.
    projectId String
    The owner (project/tenant) ID of the listener.
    protocol String
    The protocol to loadbalance.
    protocolPort Integer
    The port on which to listen to client traffic that is associated with the Loadbalancer.
    provisioningStatus String
    The provisioning status of the Listener.
    region String
    sniContainerRefs List<String>
    The list of references to TLS secrets.
    tags List<String>
    Tags is a list of resource tags.
    timeoutClientData Integer
    Frontend client inactivity timeout in milliseconds.
    timeoutMemberConnect Integer
    Backend member connection timeout in milliseconds.
    timeoutMemberData Integer
    Backend member inactivity timeout in milliseconds.
    timeoutTcpInspect Integer
    Time, in milliseconds, to wait for additional TCP packets for content inspection.
    tlsCiphers String
    List of ciphers in OpenSSL format (colon-separated).
    tlsVersions List<String>
    A list of TLS protocol versions.
    adminStateUp boolean
    The administrative state of the Listener.
    allowedCidrs string[]
    A list of IPv4, IPv6 or mix of both CIDRs.
    alpnProtocols string[]
    A list of ALPN protocols.
    clientAuthentication string
    The TLS client authentication mode.
    clientCaTlsContainerRef string
    The ref of the key manager service secret containing a PEM format client CA certificate bundle for TERMINATED_HTTPS listeners.
    clientCrlContainerRef string
    The URI of the key manager service secret containing a PEM format CA revocation list file for TERMINATED_HTTPS listeners.
    connectionLimit number
    The maximum number of connections allowed for the Loadbalancer.
    defaultPool string
    The default pool with which the Listener is associated.
    defaultPoolId string
    The UUID of default pool.
    defaultTlsContainerRef string
    A reference to a Barbican container of TLS secrets.
    description string
    The description of the listener.
    hstsIncludeSubdomains boolean
    Defines whether the includeSubDomains directive should be added to the Strict-Transport-Security HTTP response header.
    hstsMaxAge number
    The value of the max_age directive for the Strict-Transport-Security HTTP response header.
    hstsPreload boolean
    Defines whether the preload directive should be added to the Strict-Transport-Security HTTP response header.
    id string
    The provider-assigned unique ID for this managed resource.
    insertHeaders {[key: string]: string}
    A dictionary of optional headers to insert into the request before it is sent to the backend member.
    l7policies GetListenerV2L7policy[]
    L7policies are the L7 policies which are part of this listener.
    listenerId string
    loadbalancerId string
    loadbalancers GetListenerV2Loadbalancer[]
    A list of load balancer IDs.
    name string
    The name of the listener.
    operatingStatus string
    The operating status of the resource.
    pools GetListenerV2Pool[]
    Pools are the pools which are part of this listener.
    projectId string
    The owner (project/tenant) ID of the listener.
    protocol string
    The protocol to loadbalance.
    protocolPort number
    The port on which to listen to client traffic that is associated with the Loadbalancer.
    provisioningStatus string
    The provisioning status of the Listener.
    region string
    sniContainerRefs string[]
    The list of references to TLS secrets.
    tags string[]
    Tags is a list of resource tags.
    timeoutClientData number
    Frontend client inactivity timeout in milliseconds.
    timeoutMemberConnect number
    Backend member connection timeout in milliseconds.
    timeoutMemberData number
    Backend member inactivity timeout in milliseconds.
    timeoutTcpInspect number
    Time, in milliseconds, to wait for additional TCP packets for content inspection.
    tlsCiphers string
    List of ciphers in OpenSSL format (colon-separated).
    tlsVersions string[]
    A list of TLS protocol versions.
    admin_state_up bool
    The administrative state of the Listener.
    allowed_cidrs Sequence[str]
    A list of IPv4, IPv6 or mix of both CIDRs.
    alpn_protocols Sequence[str]
    A list of ALPN protocols.
    client_authentication str
    The TLS client authentication mode.
    client_ca_tls_container_ref str
    The ref of the key manager service secret containing a PEM format client CA certificate bundle for TERMINATED_HTTPS listeners.
    client_crl_container_ref str
    The URI of the key manager service secret containing a PEM format CA revocation list file for TERMINATED_HTTPS listeners.
    connection_limit int
    The maximum number of connections allowed for the Loadbalancer.
    default_pool str
    The default pool with which the Listener is associated.
    default_pool_id str
    The UUID of default pool.
    default_tls_container_ref str
    A reference to a Barbican container of TLS secrets.
    description str
    The description of the listener.
    hsts_include_subdomains bool
    Defines whether the includeSubDomains directive should be added to the Strict-Transport-Security HTTP response header.
    hsts_max_age int
    The value of the max_age directive for the Strict-Transport-Security HTTP response header.
    hsts_preload bool
    Defines whether the preload directive should be added to the Strict-Transport-Security HTTP response header.
    id str
    The provider-assigned unique ID for this managed resource.
    insert_headers Mapping[str, str]
    A dictionary of optional headers to insert into the request before it is sent to the backend member.
    l7policies Sequence[GetListenerV2L7policy]
    L7policies are the L7 policies which are part of this listener.
    listener_id str
    loadbalancer_id str
    loadbalancers Sequence[GetListenerV2Loadbalancer]
    A list of load balancer IDs.
    name str
    The name of the listener.
    operating_status str
    The operating status of the resource.
    pools Sequence[GetListenerV2Pool]
    Pools are the pools which are part of this listener.
    project_id str
    The owner (project/tenant) ID of the listener.
    protocol str
    The protocol to loadbalance.
    protocol_port int
    The port on which to listen to client traffic that is associated with the Loadbalancer.
    provisioning_status str
    The provisioning status of the Listener.
    region str
    sni_container_refs Sequence[str]
    The list of references to TLS secrets.
    tags Sequence[str]
    Tags is a list of resource tags.
    timeout_client_data int
    Frontend client inactivity timeout in milliseconds.
    timeout_member_connect int
    Backend member connection timeout in milliseconds.
    timeout_member_data int
    Backend member inactivity timeout in milliseconds.
    timeout_tcp_inspect int
    Time, in milliseconds, to wait for additional TCP packets for content inspection.
    tls_ciphers str
    List of ciphers in OpenSSL format (colon-separated).
    tls_versions Sequence[str]
    A list of TLS protocol versions.
    adminStateUp Boolean
    The administrative state of the Listener.
    allowedCidrs List<String>
    A list of IPv4, IPv6 or mix of both CIDRs.
    alpnProtocols List<String>
    A list of ALPN protocols.
    clientAuthentication String
    The TLS client authentication mode.
    clientCaTlsContainerRef String
    The ref of the key manager service secret containing a PEM format client CA certificate bundle for TERMINATED_HTTPS listeners.
    clientCrlContainerRef String
    The URI of the key manager service secret containing a PEM format CA revocation list file for TERMINATED_HTTPS listeners.
    connectionLimit Number
    The maximum number of connections allowed for the Loadbalancer.
    defaultPool String
    The default pool with which the Listener is associated.
    defaultPoolId String
    The UUID of default pool.
    defaultTlsContainerRef String
    A reference to a Barbican container of TLS secrets.
    description String
    The description of the listener.
    hstsIncludeSubdomains Boolean
    Defines whether the includeSubDomains directive should be added to the Strict-Transport-Security HTTP response header.
    hstsMaxAge Number
    The value of the max_age directive for the Strict-Transport-Security HTTP response header.
    hstsPreload Boolean
    Defines whether the preload directive should be added to the Strict-Transport-Security HTTP response header.
    id String
    The provider-assigned unique ID for this managed resource.
    insertHeaders Map<String>
    A dictionary of optional headers to insert into the request before it is sent to the backend member.
    l7policies List<Property Map>
    L7policies are the L7 policies which are part of this listener.
    listenerId String
    loadbalancerId String
    loadbalancers List<Property Map>
    A list of load balancer IDs.
    name String
    The name of the listener.
    operatingStatus String
    The operating status of the resource.
    pools List<Property Map>
    Pools are the pools which are part of this listener.
    projectId String
    The owner (project/tenant) ID of the listener.
    protocol String
    The protocol to loadbalance.
    protocolPort Number
    The port on which to listen to client traffic that is associated with the Loadbalancer.
    provisioningStatus String
    The provisioning status of the Listener.
    region String
    sniContainerRefs List<String>
    The list of references to TLS secrets.
    tags List<String>
    Tags is a list of resource tags.
    timeoutClientData Number
    Frontend client inactivity timeout in milliseconds.
    timeoutMemberConnect Number
    Backend member connection timeout in milliseconds.
    timeoutMemberData Number
    Backend member inactivity timeout in milliseconds.
    timeoutTcpInspect Number
    Time, in milliseconds, to wait for additional TCP packets for content inspection.
    tlsCiphers String
    List of ciphers in OpenSSL format (colon-separated).
    tlsVersions List<String>
    A list of TLS protocol versions.

    Supporting Types

    GetListenerV2L7policy

    Id string
    Id string
    id String
    id string
    id str
    id String

    GetListenerV2Loadbalancer

    Id string
    Id string
    id String
    id string
    id str
    id String

    GetListenerV2Pool

    Id string
    Id string
    id String
    id string
    id str
    id String

    Package Details

    Repository
    OpenStack pulumi/pulumi-openstack
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the openstack Terraform Provider.
    openstack logo
    OpenStack v5.4.0 published on Wednesday, Nov 12, 2025 by Pulumi
      Meet Neo: Your AI Platform Teammate