1. Packages
  2. Packages
  3. Gcore Provider
  4. API Docs
  5. getCloudLoadBalancerListeners
Viewing docs for gcore 2.0.0-alpha.15
published on Thursday, Aug 6, 2026 by g-core
Viewing docs for gcore 2.0.0-alpha.15
published on Thursday, Aug 6, 2026 by g-core

    Load balancer listeners handle incoming traffic on specified protocols and ports, forwarding requests to backend pools.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as gcore from "@pulumi/gcore";
    
    const exampleCloudLoadBalancerListeners = gcore.getCloudLoadBalancerListeners({
        projectId: 1,
        regionId: 1,
        loadBalancerId: "00000000-0000-4000-8000-000000000000",
        name: "listener-name",
    });
    
    import pulumi
    import pulumi_gcore as gcore
    
    example_cloud_load_balancer_listeners = gcore.get_cloud_load_balancer_listeners(project_id=1,
        region_id=1,
        load_balancer_id="00000000-0000-4000-8000-000000000000",
        name="listener-name")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/gcore/v2/gcore"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := gcore.GetCloudLoadBalancerListeners(ctx, &gcore.GetCloudLoadBalancerListenersArgs{
    			ProjectId:      pulumi.Float64Ref(1),
    			RegionId:       pulumi.Float64Ref(1),
    			LoadBalancerId: pulumi.StringRef("00000000-0000-4000-8000-000000000000"),
    			Name:           pulumi.StringRef("listener-name"),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Gcore = Pulumi.Gcore;
    
    return await Deployment.RunAsync(() => 
    {
        var exampleCloudLoadBalancerListeners = Gcore.GetCloudLoadBalancerListeners.Invoke(new()
        {
            ProjectId = 1,
            RegionId = 1,
            LoadBalancerId = "00000000-0000-4000-8000-000000000000",
            Name = "listener-name",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.gcore.GcoreFunctions;
    import com.pulumi.gcore.inputs.GetCloudLoadBalancerListenersArgs;
    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 exampleCloudLoadBalancerListeners = GcoreFunctions.getCloudLoadBalancerListeners(GetCloudLoadBalancerListenersArgs.builder()
                .projectId(1)
                .regionId(1)
                .loadBalancerId("00000000-0000-4000-8000-000000000000")
                .name("listener-name")
                .build());
    
        }
    }
    
    variables:
      exampleCloudLoadBalancerListeners:
        fn::invoke:
          function: gcore:getCloudLoadBalancerListeners
          arguments:
            projectId: 1
            regionId: 1
            loadBalancerId: 00000000-0000-4000-8000-000000000000
            name: listener-name
    
    Example coming soon!
    

    Using getCloudLoadBalancerListeners

    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 getCloudLoadBalancerListeners(args: GetCloudLoadBalancerListenersArgs, opts?: InvokeOptions): Promise<GetCloudLoadBalancerListenersResult>
    function getCloudLoadBalancerListenersOutput(args: GetCloudLoadBalancerListenersOutputArgs, opts?: InvokeOptions): Output<GetCloudLoadBalancerListenersResult>
    def get_cloud_load_balancer_listeners(load_balancer_id: Optional[str] = None,
                                          max_items: Optional[float] = None,
                                          name: Optional[str] = None,
                                          project_id: Optional[float] = None,
                                          region_id: Optional[float] = None,
                                          opts: Optional[InvokeOptions] = None) -> GetCloudLoadBalancerListenersResult
    def get_cloud_load_balancer_listeners_output(load_balancer_id: pulumi.Input[Optional[str]] = None,
                                          max_items: pulumi.Input[Optional[float]] = None,
                                          name: pulumi.Input[Optional[str]] = None,
                                          project_id: pulumi.Input[Optional[float]] = None,
                                          region_id: pulumi.Input[Optional[float]] = None,
                                          opts: Optional[InvokeOptions] = None) -> Output[GetCloudLoadBalancerListenersResult]
    func GetCloudLoadBalancerListeners(ctx *Context, args *GetCloudLoadBalancerListenersArgs, opts ...InvokeOption) (*GetCloudLoadBalancerListenersResult, error)
    func GetCloudLoadBalancerListenersOutput(ctx *Context, args *GetCloudLoadBalancerListenersOutputArgs, opts ...InvokeOption) GetCloudLoadBalancerListenersResultOutput

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

    public static class GetCloudLoadBalancerListeners 
    {
        public static Task<GetCloudLoadBalancerListenersResult> InvokeAsync(GetCloudLoadBalancerListenersArgs args, InvokeOptions? opts = null)
        public static Output<GetCloudLoadBalancerListenersResult> Invoke(GetCloudLoadBalancerListenersInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetCloudLoadBalancerListenersResult> getCloudLoadBalancerListeners(GetCloudLoadBalancerListenersArgs args, InvokeOptions options)
    public static Output<GetCloudLoadBalancerListenersResult> getCloudLoadBalancerListeners(GetCloudLoadBalancerListenersArgs args, InvokeOptions options)
    
    fn::invoke:
      function: gcore:index/getCloudLoadBalancerListeners:getCloudLoadBalancerListeners
      arguments:
        # arguments dictionary
    data "gcore_get_cloud_load_balancer_listeners" "name" {
        # arguments
    }

    The following arguments are supported:

    LoadBalancerId string
    Load Balancer ID
    MaxItems double
    Max items to fetch, default: 1000
    Name string
    Filter by name
    ProjectId double
    Project ID
    RegionId double
    Region ID
    LoadBalancerId string
    Load Balancer ID
    MaxItems float64
    Max items to fetch, default: 1000
    Name string
    Filter by name
    ProjectId float64
    Project ID
    RegionId float64
    Region ID
    load_balancer_id string
    Load Balancer ID
    max_items number
    Max items to fetch, default: 1000
    name string
    Filter by name
    project_id number
    Project ID
    region_id number
    Region ID
    loadBalancerId String
    Load Balancer ID
    maxItems Double
    Max items to fetch, default: 1000
    name String
    Filter by name
    projectId Double
    Project ID
    regionId Double
    Region ID
    loadBalancerId string
    Load Balancer ID
    maxItems number
    Max items to fetch, default: 1000
    name string
    Filter by name
    projectId number
    Project ID
    regionId number
    Region ID
    load_balancer_id str
    Load Balancer ID
    max_items float
    Max items to fetch, default: 1000
    name str
    Filter by name
    project_id float
    Project ID
    region_id float
    Region ID
    loadBalancerId String
    Load Balancer ID
    maxItems Number
    Max items to fetch, default: 1000
    name String
    Filter by name
    projectId Number
    Project ID
    regionId Number
    Region ID

    getCloudLoadBalancerListeners Result

    The following output properties are available:

    Id string
    The provider-assigned unique ID for this managed resource.
    Items List<GetCloudLoadBalancerListenersItem>
    The items returned by the data source
    LoadBalancerId string
    Load Balancer ID
    MaxItems double
    Max items to fetch, default: 1000
    Name string
    Filter by name
    ProjectId double
    Project ID
    RegionId double
    Region ID
    Id string
    The provider-assigned unique ID for this managed resource.
    Items []GetCloudLoadBalancerListenersItem
    The items returned by the data source
    LoadBalancerId string
    Load Balancer ID
    MaxItems float64
    Max items to fetch, default: 1000
    Name string
    Filter by name
    ProjectId float64
    Project ID
    RegionId float64
    Region ID
    id string
    The provider-assigned unique ID for this managed resource.
    items list(object)
    The items returned by the data source
    load_balancer_id string
    Load Balancer ID
    max_items number
    Max items to fetch, default: 1000
    name string
    Filter by name
    project_id number
    Project ID
    region_id number
    Region ID
    id String
    The provider-assigned unique ID for this managed resource.
    items List<GetCloudLoadBalancerListenersItem>
    The items returned by the data source
    loadBalancerId String
    Load Balancer ID
    maxItems Double
    Max items to fetch, default: 1000
    name String
    Filter by name
    projectId Double
    Project ID
    regionId Double
    Region ID
    id string
    The provider-assigned unique ID for this managed resource.
    items GetCloudLoadBalancerListenersItem[]
    The items returned by the data source
    loadBalancerId string
    Load Balancer ID
    maxItems number
    Max items to fetch, default: 1000
    name string
    Filter by name
    projectId number
    Project ID
    regionId number
    Region ID
    id str
    The provider-assigned unique ID for this managed resource.
    items Sequence[GetCloudLoadBalancerListenersItem]
    The items returned by the data source
    load_balancer_id str
    Load Balancer ID
    max_items float
    Max items to fetch, default: 1000
    name str
    Filter by name
    project_id float
    Project ID
    region_id float
    Region ID
    id String
    The provider-assigned unique ID for this managed resource.
    items List<Property Map>
    The items returned by the data source
    loadBalancerId String
    Load Balancer ID
    maxItems Number
    Max items to fetch, default: 1000
    name String
    Filter by name
    projectId Number
    Project ID
    regionId Number
    Region ID

    Supporting Types

    GetCloudLoadBalancerListenersItem

    AdminStateUp bool
    Administrative state of the resource. When set to true, the resource is enabled and operational. When set to false, the resource is disabled and will not process traffic. Defaults to true.
    AllowedCidrs List<string>
    Network CIDRs from which service will be accessible
    ConnectionLimit double
    Limit of simultaneous connections
    CreatorTaskId string
    Task that created this entity
    Id string
    Load balancer listener ID
    InsertHeaders Dictionary<string, string>
    Dictionary of additional header insertion into HTTP headers. Only used with HTTP and TERMINATED_HTTPS protocols.
    LoadBalancerId string
    Load balancer ID
    Name string
    Load balancer listener name
    OperatingStatus string
    Listener operating status Available values: "DEGRADED", "DRAINING", "ERROR", "NO_MONITOR", "OFFLINE", "ONLINE".
    PoolCount double
    Number of pools (for UI)
    Protocol string
    Load balancer protocol Available values: "HTTP", "HTTPS", "PROMETHEUS", "TCP", "TERMINATED_HTTPS", "UDP".
    ProtocolPort double
    Protocol port
    ProvisioningStatus string
    Listener lifecycle status Available values: "ACTIVE", "DELETED", "ERROR", "PENDINGCREATE", "PENDINGDELETE", "PENDING_UPDATE".
    SecretId string
    ID of the secret where PKCS12 file is stored for TERMINATED_HTTPS or PROMETHEUS load balancer
    SniSecretIds List<string>
    List of secret's ID containing PKCS12 format certificate/key bundles for TERMINATED_HTTPS or PROMETHEUS listeners
    TaskId string
    The UUID of the active task that currently holds a lock on the resource. This lock prevents concurrent modifications to ensure consistency. If null, the resource is not locked.
    TimeoutClientData double
    Frontend client inactivity timeout in milliseconds
    TimeoutMemberConnect double
    Backend member connection timeout in milliseconds

    Deprecated: Deprecated

    TimeoutMemberData double
    Backend member inactivity timeout in milliseconds

    Deprecated: Deprecated

    UserLists List<GetCloudLoadBalancerListenersItemUserList>
    Load balancer listener users list
    AdminStateUp bool
    Administrative state of the resource. When set to true, the resource is enabled and operational. When set to false, the resource is disabled and will not process traffic. Defaults to true.
    AllowedCidrs []string
    Network CIDRs from which service will be accessible
    ConnectionLimit float64
    Limit of simultaneous connections
    CreatorTaskId string
    Task that created this entity
    Id string
    Load balancer listener ID
    InsertHeaders map[string]string
    Dictionary of additional header insertion into HTTP headers. Only used with HTTP and TERMINATED_HTTPS protocols.
    LoadBalancerId string
    Load balancer ID
    Name string
    Load balancer listener name
    OperatingStatus string
    Listener operating status Available values: "DEGRADED", "DRAINING", "ERROR", "NO_MONITOR", "OFFLINE", "ONLINE".
    PoolCount float64
    Number of pools (for UI)
    Protocol string
    Load balancer protocol Available values: "HTTP", "HTTPS", "PROMETHEUS", "TCP", "TERMINATED_HTTPS", "UDP".
    ProtocolPort float64
    Protocol port
    ProvisioningStatus string
    Listener lifecycle status Available values: "ACTIVE", "DELETED", "ERROR", "PENDINGCREATE", "PENDINGDELETE", "PENDING_UPDATE".
    SecretId string
    ID of the secret where PKCS12 file is stored for TERMINATED_HTTPS or PROMETHEUS load balancer
    SniSecretIds []string
    List of secret's ID containing PKCS12 format certificate/key bundles for TERMINATED_HTTPS or PROMETHEUS listeners
    TaskId string
    The UUID of the active task that currently holds a lock on the resource. This lock prevents concurrent modifications to ensure consistency. If null, the resource is not locked.
    TimeoutClientData float64
    Frontend client inactivity timeout in milliseconds
    TimeoutMemberConnect float64
    Backend member connection timeout in milliseconds

    Deprecated: Deprecated

    TimeoutMemberData float64
    Backend member inactivity timeout in milliseconds

    Deprecated: Deprecated

    UserLists []GetCloudLoadBalancerListenersItemUserList
    Load balancer listener users list
    admin_state_up bool
    Administrative state of the resource. When set to true, the resource is enabled and operational. When set to false, the resource is disabled and will not process traffic. Defaults to true.
    allowed_cidrs list(string)
    Network CIDRs from which service will be accessible
    connection_limit number
    Limit of simultaneous connections
    creator_task_id string
    Task that created this entity
    id string
    Load balancer listener ID
    insert_headers map(string)
    Dictionary of additional header insertion into HTTP headers. Only used with HTTP and TERMINATED_HTTPS protocols.
    load_balancer_id string
    Load balancer ID
    name string
    Load balancer listener name
    operating_status string
    Listener operating status Available values: "DEGRADED", "DRAINING", "ERROR", "NO_MONITOR", "OFFLINE", "ONLINE".
    pool_count number
    Number of pools (for UI)
    protocol string
    Load balancer protocol Available values: "HTTP", "HTTPS", "PROMETHEUS", "TCP", "TERMINATED_HTTPS", "UDP".
    protocol_port number
    Protocol port
    provisioning_status string
    Listener lifecycle status Available values: "ACTIVE", "DELETED", "ERROR", "PENDINGCREATE", "PENDINGDELETE", "PENDING_UPDATE".
    secret_id string
    ID of the secret where PKCS12 file is stored for TERMINATED_HTTPS or PROMETHEUS load balancer
    sni_secret_ids list(string)
    List of secret's ID containing PKCS12 format certificate/key bundles for TERMINATED_HTTPS or PROMETHEUS listeners
    task_id string
    The UUID of the active task that currently holds a lock on the resource. This lock prevents concurrent modifications to ensure consistency. If null, the resource is not locked.
    timeout_client_data number
    Frontend client inactivity timeout in milliseconds
    timeout_member_connect number
    Backend member connection timeout in milliseconds

    Deprecated: Deprecated

    timeout_member_data number
    Backend member inactivity timeout in milliseconds

    Deprecated: Deprecated

    user_lists list(object)
    Load balancer listener users list
    adminStateUp Boolean
    Administrative state of the resource. When set to true, the resource is enabled and operational. When set to false, the resource is disabled and will not process traffic. Defaults to true.
    allowedCidrs List<String>
    Network CIDRs from which service will be accessible
    connectionLimit Double
    Limit of simultaneous connections
    creatorTaskId String
    Task that created this entity
    id String
    Load balancer listener ID
    insertHeaders Map<String,String>
    Dictionary of additional header insertion into HTTP headers. Only used with HTTP and TERMINATED_HTTPS protocols.
    loadBalancerId String
    Load balancer ID
    name String
    Load balancer listener name
    operatingStatus String
    Listener operating status Available values: "DEGRADED", "DRAINING", "ERROR", "NO_MONITOR", "OFFLINE", "ONLINE".
    poolCount Double
    Number of pools (for UI)
    protocol String
    Load balancer protocol Available values: "HTTP", "HTTPS", "PROMETHEUS", "TCP", "TERMINATED_HTTPS", "UDP".
    protocolPort Double
    Protocol port
    provisioningStatus String
    Listener lifecycle status Available values: "ACTIVE", "DELETED", "ERROR", "PENDINGCREATE", "PENDINGDELETE", "PENDING_UPDATE".
    secretId String
    ID of the secret where PKCS12 file is stored for TERMINATED_HTTPS or PROMETHEUS load balancer
    sniSecretIds List<String>
    List of secret's ID containing PKCS12 format certificate/key bundles for TERMINATED_HTTPS or PROMETHEUS listeners
    taskId String
    The UUID of the active task that currently holds a lock on the resource. This lock prevents concurrent modifications to ensure consistency. If null, the resource is not locked.
    timeoutClientData Double
    Frontend client inactivity timeout in milliseconds
    timeoutMemberConnect Double
    Backend member connection timeout in milliseconds

    Deprecated: Deprecated

    timeoutMemberData Double
    Backend member inactivity timeout in milliseconds

    Deprecated: Deprecated

    userLists List<GetCloudLoadBalancerListenersItemUserList>
    Load balancer listener users list
    adminStateUp boolean
    Administrative state of the resource. When set to true, the resource is enabled and operational. When set to false, the resource is disabled and will not process traffic. Defaults to true.
    allowedCidrs string[]
    Network CIDRs from which service will be accessible
    connectionLimit number
    Limit of simultaneous connections
    creatorTaskId string
    Task that created this entity
    id string
    Load balancer listener ID
    insertHeaders {[key: string]: string}
    Dictionary of additional header insertion into HTTP headers. Only used with HTTP and TERMINATED_HTTPS protocols.
    loadBalancerId string
    Load balancer ID
    name string
    Load balancer listener name
    operatingStatus string
    Listener operating status Available values: "DEGRADED", "DRAINING", "ERROR", "NO_MONITOR", "OFFLINE", "ONLINE".
    poolCount number
    Number of pools (for UI)
    protocol string
    Load balancer protocol Available values: "HTTP", "HTTPS", "PROMETHEUS", "TCP", "TERMINATED_HTTPS", "UDP".
    protocolPort number
    Protocol port
    provisioningStatus string
    Listener lifecycle status Available values: "ACTIVE", "DELETED", "ERROR", "PENDINGCREATE", "PENDINGDELETE", "PENDING_UPDATE".
    secretId string
    ID of the secret where PKCS12 file is stored for TERMINATED_HTTPS or PROMETHEUS load balancer
    sniSecretIds string[]
    List of secret's ID containing PKCS12 format certificate/key bundles for TERMINATED_HTTPS or PROMETHEUS listeners
    taskId string
    The UUID of the active task that currently holds a lock on the resource. This lock prevents concurrent modifications to ensure consistency. If null, the resource is not locked.
    timeoutClientData number
    Frontend client inactivity timeout in milliseconds
    timeoutMemberConnect number
    Backend member connection timeout in milliseconds

    Deprecated: Deprecated

    timeoutMemberData number
    Backend member inactivity timeout in milliseconds

    Deprecated: Deprecated

    userLists GetCloudLoadBalancerListenersItemUserList[]
    Load balancer listener users list
    admin_state_up bool
    Administrative state of the resource. When set to true, the resource is enabled and operational. When set to false, the resource is disabled and will not process traffic. Defaults to true.
    allowed_cidrs Sequence[str]
    Network CIDRs from which service will be accessible
    connection_limit float
    Limit of simultaneous connections
    creator_task_id str
    Task that created this entity
    id str
    Load balancer listener ID
    insert_headers Mapping[str, str]
    Dictionary of additional header insertion into HTTP headers. Only used with HTTP and TERMINATED_HTTPS protocols.
    load_balancer_id str
    Load balancer ID
    name str
    Load balancer listener name
    operating_status str
    Listener operating status Available values: "DEGRADED", "DRAINING", "ERROR", "NO_MONITOR", "OFFLINE", "ONLINE".
    pool_count float
    Number of pools (for UI)
    protocol str
    Load balancer protocol Available values: "HTTP", "HTTPS", "PROMETHEUS", "TCP", "TERMINATED_HTTPS", "UDP".
    protocol_port float
    Protocol port
    provisioning_status str
    Listener lifecycle status Available values: "ACTIVE", "DELETED", "ERROR", "PENDINGCREATE", "PENDINGDELETE", "PENDING_UPDATE".
    secret_id str
    ID of the secret where PKCS12 file is stored for TERMINATED_HTTPS or PROMETHEUS load balancer
    sni_secret_ids Sequence[str]
    List of secret's ID containing PKCS12 format certificate/key bundles for TERMINATED_HTTPS or PROMETHEUS listeners
    task_id str
    The UUID of the active task that currently holds a lock on the resource. This lock prevents concurrent modifications to ensure consistency. If null, the resource is not locked.
    timeout_client_data float
    Frontend client inactivity timeout in milliseconds
    timeout_member_connect float
    Backend member connection timeout in milliseconds

    Deprecated: Deprecated

    timeout_member_data float
    Backend member inactivity timeout in milliseconds

    Deprecated: Deprecated

    user_lists Sequence[GetCloudLoadBalancerListenersItemUserList]
    Load balancer listener users list
    adminStateUp Boolean
    Administrative state of the resource. When set to true, the resource is enabled and operational. When set to false, the resource is disabled and will not process traffic. Defaults to true.
    allowedCidrs List<String>
    Network CIDRs from which service will be accessible
    connectionLimit Number
    Limit of simultaneous connections
    creatorTaskId String
    Task that created this entity
    id String
    Load balancer listener ID
    insertHeaders Map<String>
    Dictionary of additional header insertion into HTTP headers. Only used with HTTP and TERMINATED_HTTPS protocols.
    loadBalancerId String
    Load balancer ID
    name String
    Load balancer listener name
    operatingStatus String
    Listener operating status Available values: "DEGRADED", "DRAINING", "ERROR", "NO_MONITOR", "OFFLINE", "ONLINE".
    poolCount Number
    Number of pools (for UI)
    protocol String
    Load balancer protocol Available values: "HTTP", "HTTPS", "PROMETHEUS", "TCP", "TERMINATED_HTTPS", "UDP".
    protocolPort Number
    Protocol port
    provisioningStatus String
    Listener lifecycle status Available values: "ACTIVE", "DELETED", "ERROR", "PENDINGCREATE", "PENDINGDELETE", "PENDING_UPDATE".
    secretId String
    ID of the secret where PKCS12 file is stored for TERMINATED_HTTPS or PROMETHEUS load balancer
    sniSecretIds List<String>
    List of secret's ID containing PKCS12 format certificate/key bundles for TERMINATED_HTTPS or PROMETHEUS listeners
    taskId String
    The UUID of the active task that currently holds a lock on the resource. This lock prevents concurrent modifications to ensure consistency. If null, the resource is not locked.
    timeoutClientData Number
    Frontend client inactivity timeout in milliseconds
    timeoutMemberConnect Number
    Backend member connection timeout in milliseconds

    Deprecated: Deprecated

    timeoutMemberData Number
    Backend member inactivity timeout in milliseconds

    Deprecated: Deprecated

    userLists List<Property Map>
    Load balancer listener users list

    GetCloudLoadBalancerListenersItemUserList

    EncryptedPassword string
    Encrypted password to auth via Basic Authentication
    Username string
    Username to auth via Basic Authentication
    EncryptedPassword string
    Encrypted password to auth via Basic Authentication
    Username string
    Username to auth via Basic Authentication
    encrypted_password string
    Encrypted password to auth via Basic Authentication
    username string
    Username to auth via Basic Authentication
    encryptedPassword String
    Encrypted password to auth via Basic Authentication
    username String
    Username to auth via Basic Authentication
    encryptedPassword string
    Encrypted password to auth via Basic Authentication
    username string
    Username to auth via Basic Authentication
    encrypted_password str
    Encrypted password to auth via Basic Authentication
    username str
    Username to auth via Basic Authentication
    encryptedPassword String
    Encrypted password to auth via Basic Authentication
    username String
    Username to auth via Basic Authentication

    Package Details

    Repository
    gcore g-core/terraform-provider-gcore
    License
    Notes
    This Pulumi package is based on the gcore Terraform Provider.
    Viewing docs for gcore 2.0.0-alpha.15
    published on Thursday, Aug 6, 2026 by g-core

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial