1. Packages
  2. UpCloud
  3. API Docs
  4. LoadbalancerBackendTlsConfig
UpCloud v0.1.0 published on Friday, Mar 14, 2025 by UpCloudLtd

upcloud.LoadbalancerBackendTlsConfig

Explore with Pulumi AI

upcloud logo
UpCloud v0.1.0 published on Friday, Mar 14, 2025 by UpCloudLtd

    This resource represents backend TLS config

    Create LoadbalancerBackendTlsConfig Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new LoadbalancerBackendTlsConfig(name: string, args: LoadbalancerBackendTlsConfigArgs, opts?: CustomResourceOptions);
    @overload
    def LoadbalancerBackendTlsConfig(resource_name: str,
                                     args: LoadbalancerBackendTlsConfigArgs,
                                     opts: Optional[ResourceOptions] = None)
    
    @overload
    def LoadbalancerBackendTlsConfig(resource_name: str,
                                     opts: Optional[ResourceOptions] = None,
                                     backend: Optional[str] = None,
                                     certificate_bundle: Optional[str] = None,
                                     name: Optional[str] = None)
    func NewLoadbalancerBackendTlsConfig(ctx *Context, name string, args LoadbalancerBackendTlsConfigArgs, opts ...ResourceOption) (*LoadbalancerBackendTlsConfig, error)
    public LoadbalancerBackendTlsConfig(string name, LoadbalancerBackendTlsConfigArgs args, CustomResourceOptions? opts = null)
    public LoadbalancerBackendTlsConfig(String name, LoadbalancerBackendTlsConfigArgs args)
    public LoadbalancerBackendTlsConfig(String name, LoadbalancerBackendTlsConfigArgs args, CustomResourceOptions options)
    
    type: upcloud:LoadbalancerBackendTlsConfig
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args LoadbalancerBackendTlsConfigArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args LoadbalancerBackendTlsConfigArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args LoadbalancerBackendTlsConfigArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args LoadbalancerBackendTlsConfigArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args LoadbalancerBackendTlsConfigArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var loadbalancerBackendTlsConfigResource = new UpCloud.LoadbalancerBackendTlsConfig("loadbalancerBackendTlsConfigResource", new()
    {
        Backend = "string",
        CertificateBundle = "string",
        Name = "string",
    });
    
    example, err := upcloud.NewLoadbalancerBackendTlsConfig(ctx, "loadbalancerBackendTlsConfigResource", &upcloud.LoadbalancerBackendTlsConfigArgs{
    	Backend:           pulumi.String("string"),
    	CertificateBundle: pulumi.String("string"),
    	Name:              pulumi.String("string"),
    })
    
    var loadbalancerBackendTlsConfigResource = new LoadbalancerBackendTlsConfig("loadbalancerBackendTlsConfigResource", LoadbalancerBackendTlsConfigArgs.builder()
        .backend("string")
        .certificateBundle("string")
        .name("string")
        .build());
    
    loadbalancer_backend_tls_config_resource = upcloud.LoadbalancerBackendTlsConfig("loadbalancerBackendTlsConfigResource",
        backend="string",
        certificate_bundle="string",
        name="string")
    
    const loadbalancerBackendTlsConfigResource = new upcloud.LoadbalancerBackendTlsConfig("loadbalancerBackendTlsConfigResource", {
        backend: "string",
        certificateBundle: "string",
        name: "string",
    });
    
    type: upcloud:LoadbalancerBackendTlsConfig
    properties:
        backend: string
        certificateBundle: string
        name: string
    

    LoadbalancerBackendTlsConfig Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The LoadbalancerBackendTlsConfig resource accepts the following input properties:

    Backend string
    ID of the load balancer backend to which the TLS config is connected.
    CertificateBundle string
    Reference to certificate bundle ID.
    Name string
    The name of the TLS config. Must be unique within customer account.
    Backend string
    ID of the load balancer backend to which the TLS config is connected.
    CertificateBundle string
    Reference to certificate bundle ID.
    Name string
    The name of the TLS config. Must be unique within customer account.
    backend String
    ID of the load balancer backend to which the TLS config is connected.
    certificateBundle String
    Reference to certificate bundle ID.
    name String
    The name of the TLS config. Must be unique within customer account.
    backend string
    ID of the load balancer backend to which the TLS config is connected.
    certificateBundle string
    Reference to certificate bundle ID.
    name string
    The name of the TLS config. Must be unique within customer account.
    backend str
    ID of the load balancer backend to which the TLS config is connected.
    certificate_bundle str
    Reference to certificate bundle ID.
    name str
    The name of the TLS config. Must be unique within customer account.
    backend String
    ID of the load balancer backend to which the TLS config is connected.
    certificateBundle String
    Reference to certificate bundle ID.
    name String
    The name of the TLS config. Must be unique within customer account.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the LoadbalancerBackendTlsConfig resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing LoadbalancerBackendTlsConfig Resource

    Get an existing LoadbalancerBackendTlsConfig resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: LoadbalancerBackendTlsConfigState, opts?: CustomResourceOptions): LoadbalancerBackendTlsConfig
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            backend: Optional[str] = None,
            certificate_bundle: Optional[str] = None,
            name: Optional[str] = None) -> LoadbalancerBackendTlsConfig
    func GetLoadbalancerBackendTlsConfig(ctx *Context, name string, id IDInput, state *LoadbalancerBackendTlsConfigState, opts ...ResourceOption) (*LoadbalancerBackendTlsConfig, error)
    public static LoadbalancerBackendTlsConfig Get(string name, Input<string> id, LoadbalancerBackendTlsConfigState? state, CustomResourceOptions? opts = null)
    public static LoadbalancerBackendTlsConfig get(String name, Output<String> id, LoadbalancerBackendTlsConfigState state, CustomResourceOptions options)
    resources:  _:    type: upcloud:LoadbalancerBackendTlsConfig    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    Backend string
    ID of the load balancer backend to which the TLS config is connected.
    CertificateBundle string
    Reference to certificate bundle ID.
    Name string
    The name of the TLS config. Must be unique within customer account.
    Backend string
    ID of the load balancer backend to which the TLS config is connected.
    CertificateBundle string
    Reference to certificate bundle ID.
    Name string
    The name of the TLS config. Must be unique within customer account.
    backend String
    ID of the load balancer backend to which the TLS config is connected.
    certificateBundle String
    Reference to certificate bundle ID.
    name String
    The name of the TLS config. Must be unique within customer account.
    backend string
    ID of the load balancer backend to which the TLS config is connected.
    certificateBundle string
    Reference to certificate bundle ID.
    name string
    The name of the TLS config. Must be unique within customer account.
    backend str
    ID of the load balancer backend to which the TLS config is connected.
    certificate_bundle str
    Reference to certificate bundle ID.
    name str
    The name of the TLS config. Must be unique within customer account.
    backend String
    ID of the load balancer backend to which the TLS config is connected.
    certificateBundle String
    Reference to certificate bundle ID.
    name String
    The name of the TLS config. Must be unique within customer account.

    Package Details

    Repository
    upcloud UpCloudLtd/pulumi-upcloud
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the upcloud Terraform Provider.
    upcloud logo
    UpCloud v0.1.0 published on Friday, Mar 14, 2025 by UpCloudLtd