volcengine.alb.ListenerDomainExtension
Explore with Pulumi AI
Provides a resource to manage alb listener domain extension
Example Usage
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Volcengine = Pulumi.Volcengine;
return await Deployment.RunAsync(() =>
{
var fooListener = new Volcengine.Alb.Listener("fooListener", new()
{
LoadBalancerId = "alb-1iidd17v3klj474adhfrunyz9",
ListenerName = "acc-test-listener-1",
Protocol = "HTTPS",
Port = 6666,
Enabled = "on",
CertificateId = "cert-1iidd2pahdyio74adhfr9ajwg",
CaCertificateId = "cert-1iidd2r9ii0hs74adhfeodxo1",
ServerGroupId = "rsp-1g72w74y4umf42zbhq4k4hnln",
EnableHttp2 = "on",
EnableQuic = "off",
AclStatus = "on",
AclType = "white",
AclIds = new[]
{
"acl-1g72w6z11ighs2zbhq4v3rvh4",
},
Description = "acc test listener",
});
var fooListenerDomainExtension = new Volcengine.Alb.ListenerDomainExtension("fooListenerDomainExtension", new()
{
ListenerId = fooListener.Id,
Domain = "test-modify.com",
CertificateId = "cert-1iidd2pahdyio74adhfr9ajwg",
});
});
package main
import (
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/volcengine/pulumi-volcengine/sdk/go/volcengine/alb"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
fooListener, err := alb.NewListener(ctx, "fooListener", &alb.ListenerArgs{
LoadBalancerId: pulumi.String("alb-1iidd17v3klj474adhfrunyz9"),
ListenerName: pulumi.String("acc-test-listener-1"),
Protocol: pulumi.String("HTTPS"),
Port: pulumi.Int(6666),
Enabled: pulumi.String("on"),
CertificateId: pulumi.String("cert-1iidd2pahdyio74adhfr9ajwg"),
CaCertificateId: pulumi.String("cert-1iidd2r9ii0hs74adhfeodxo1"),
ServerGroupId: pulumi.String("rsp-1g72w74y4umf42zbhq4k4hnln"),
EnableHttp2: pulumi.String("on"),
EnableQuic: pulumi.String("off"),
AclStatus: pulumi.String("on"),
AclType: pulumi.String("white"),
AclIds: pulumi.StringArray{
pulumi.String("acl-1g72w6z11ighs2zbhq4v3rvh4"),
},
Description: pulumi.String("acc test listener"),
})
if err != nil {
return err
}
_, err = alb.NewListenerDomainExtension(ctx, "fooListenerDomainExtension", &alb.ListenerDomainExtensionArgs{
ListenerId: fooListener.ID(),
Domain: pulumi.String("test-modify.com"),
CertificateId: pulumi.String("cert-1iidd2pahdyio74adhfr9ajwg"),
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.volcengine.alb.Listener;
import com.pulumi.volcengine.alb.ListenerArgs;
import com.pulumi.volcengine.alb.ListenerDomainExtension;
import com.pulumi.volcengine.alb.ListenerDomainExtensionArgs;
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) {
var fooListener = new Listener("fooListener", ListenerArgs.builder()
.loadBalancerId("alb-1iidd17v3klj474adhfrunyz9")
.listenerName("acc-test-listener-1")
.protocol("HTTPS")
.port(6666)
.enabled("on")
.certificateId("cert-1iidd2pahdyio74adhfr9ajwg")
.caCertificateId("cert-1iidd2r9ii0hs74adhfeodxo1")
.serverGroupId("rsp-1g72w74y4umf42zbhq4k4hnln")
.enableHttp2("on")
.enableQuic("off")
.aclStatus("on")
.aclType("white")
.aclIds("acl-1g72w6z11ighs2zbhq4v3rvh4")
.description("acc test listener")
.build());
var fooListenerDomainExtension = new ListenerDomainExtension("fooListenerDomainExtension", ListenerDomainExtensionArgs.builder()
.listenerId(fooListener.id())
.domain("test-modify.com")
.certificateId("cert-1iidd2pahdyio74adhfr9ajwg")
.build());
}
}
import pulumi
import pulumi_volcengine as volcengine
foo_listener = volcengine.alb.Listener("fooListener",
load_balancer_id="alb-1iidd17v3klj474adhfrunyz9",
listener_name="acc-test-listener-1",
protocol="HTTPS",
port=6666,
enabled="on",
certificate_id="cert-1iidd2pahdyio74adhfr9ajwg",
ca_certificate_id="cert-1iidd2r9ii0hs74adhfeodxo1",
server_group_id="rsp-1g72w74y4umf42zbhq4k4hnln",
enable_http2="on",
enable_quic="off",
acl_status="on",
acl_type="white",
acl_ids=["acl-1g72w6z11ighs2zbhq4v3rvh4"],
description="acc test listener")
foo_listener_domain_extension = volcengine.alb.ListenerDomainExtension("fooListenerDomainExtension",
listener_id=foo_listener.id,
domain="test-modify.com",
certificate_id="cert-1iidd2pahdyio74adhfr9ajwg")
import * as pulumi from "@pulumi/pulumi";
import * as volcengine from "@volcengine/pulumi";
const fooListener = new volcengine.alb.Listener("fooListener", {
loadBalancerId: "alb-1iidd17v3klj474adhfrunyz9",
listenerName: "acc-test-listener-1",
protocol: "HTTPS",
port: 6666,
enabled: "on",
certificateId: "cert-1iidd2pahdyio74adhfr9ajwg",
caCertificateId: "cert-1iidd2r9ii0hs74adhfeodxo1",
serverGroupId: "rsp-1g72w74y4umf42zbhq4k4hnln",
enableHttp2: "on",
enableQuic: "off",
aclStatus: "on",
aclType: "white",
aclIds: ["acl-1g72w6z11ighs2zbhq4v3rvh4"],
description: "acc test listener",
});
const fooListenerDomainExtension = new volcengine.alb.ListenerDomainExtension("fooListenerDomainExtension", {
listenerId: fooListener.id,
domain: "test-modify.com",
certificateId: "cert-1iidd2pahdyio74adhfr9ajwg",
});
resources:
fooListener:
type: volcengine:alb:Listener
properties:
loadBalancerId: alb-1iidd17v3klj474adhfrunyz9
listenerName: acc-test-listener-1
protocol: HTTPS
port: 6666
enabled: on
certificateId: cert-1iidd2pahdyio74adhfr9ajwg
caCertificateId: cert-1iidd2r9ii0hs74adhfeodxo1
serverGroupId: rsp-1g72w74y4umf42zbhq4k4hnln
enableHttp2: on
enableQuic: off
aclStatus: on
aclType: white
aclIds:
- acl-1g72w6z11ighs2zbhq4v3rvh4
description: acc test listener
fooListenerDomainExtension:
type: volcengine:alb:ListenerDomainExtension
properties:
listenerId: ${fooListener.id}
domain: test-modify.com
certificateId: cert-1iidd2pahdyio74adhfr9ajwg
Create ListenerDomainExtension Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ListenerDomainExtension(name: string, args: ListenerDomainExtensionArgs, opts?: CustomResourceOptions);
@overload
def ListenerDomainExtension(resource_name: str,
args: ListenerDomainExtensionArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ListenerDomainExtension(resource_name: str,
opts: Optional[ResourceOptions] = None,
certificate_id: Optional[str] = None,
domain: Optional[str] = None,
listener_id: Optional[str] = None)
func NewListenerDomainExtension(ctx *Context, name string, args ListenerDomainExtensionArgs, opts ...ResourceOption) (*ListenerDomainExtension, error)
public ListenerDomainExtension(string name, ListenerDomainExtensionArgs args, CustomResourceOptions? opts = null)
public ListenerDomainExtension(String name, ListenerDomainExtensionArgs args)
public ListenerDomainExtension(String name, ListenerDomainExtensionArgs args, CustomResourceOptions options)
type: volcengine:alb:ListenerDomainExtension
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 ListenerDomainExtensionArgs
- 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 ListenerDomainExtensionArgs
- 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 ListenerDomainExtensionArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ListenerDomainExtensionArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ListenerDomainExtensionArgs
- 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 listenerDomainExtensionResource = new Volcengine.Alb.ListenerDomainExtension("listenerDomainExtensionResource", new()
{
CertificateId = "string",
Domain = "string",
ListenerId = "string",
});
example, err := alb.NewListenerDomainExtension(ctx, "listenerDomainExtensionResource", &alb.ListenerDomainExtensionArgs{
CertificateId: pulumi.String("string"),
Domain: pulumi.String("string"),
ListenerId: pulumi.String("string"),
})
var listenerDomainExtensionResource = new ListenerDomainExtension("listenerDomainExtensionResource", ListenerDomainExtensionArgs.builder()
.certificateId("string")
.domain("string")
.listenerId("string")
.build());
listener_domain_extension_resource = volcengine.alb.ListenerDomainExtension("listenerDomainExtensionResource",
certificate_id="string",
domain="string",
listener_id="string")
const listenerDomainExtensionResource = new volcengine.alb.ListenerDomainExtension("listenerDomainExtensionResource", {
certificateId: "string",
domain: "string",
listenerId: "string",
});
type: volcengine:alb:ListenerDomainExtension
properties:
certificateId: string
domain: string
listenerId: string
ListenerDomainExtension Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The ListenerDomainExtension resource accepts the following input properties:
- Certificate
Id string - Server certificate used for the domain name.
- Domain string
- The domain name. The maximum number of associated domain names for an HTTPS listener is 20, with a value range of 1 to 20.
- Listener
Id string - The listener id. Only HTTPS listener is effective.
- Certificate
Id string - Server certificate used for the domain name.
- Domain string
- The domain name. The maximum number of associated domain names for an HTTPS listener is 20, with a value range of 1 to 20.
- Listener
Id string - The listener id. Only HTTPS listener is effective.
- certificate
Id String - Server certificate used for the domain name.
- domain String
- The domain name. The maximum number of associated domain names for an HTTPS listener is 20, with a value range of 1 to 20.
- listener
Id String - The listener id. Only HTTPS listener is effective.
- certificate
Id string - Server certificate used for the domain name.
- domain string
- The domain name. The maximum number of associated domain names for an HTTPS listener is 20, with a value range of 1 to 20.
- listener
Id string - The listener id. Only HTTPS listener is effective.
- certificate_
id str - Server certificate used for the domain name.
- domain str
- The domain name. The maximum number of associated domain names for an HTTPS listener is 20, with a value range of 1 to 20.
- listener_
id str - The listener id. Only HTTPS listener is effective.
- certificate
Id String - Server certificate used for the domain name.
- domain String
- The domain name. The maximum number of associated domain names for an HTTPS listener is 20, with a value range of 1 to 20.
- listener
Id String - The listener id. Only HTTPS listener is effective.
Outputs
All input properties are implicitly available as output properties. Additionally, the ListenerDomainExtension resource produces the following output properties:
- Domain
Extension stringId - The id of the domain extension.
- Id string
- The provider-assigned unique ID for this managed resource.
- Domain
Extension stringId - The id of the domain extension.
- Id string
- The provider-assigned unique ID for this managed resource.
- domain
Extension StringId - The id of the domain extension.
- id String
- The provider-assigned unique ID for this managed resource.
- domain
Extension stringId - The id of the domain extension.
- id string
- The provider-assigned unique ID for this managed resource.
- domain_
extension_ strid - The id of the domain extension.
- id str
- The provider-assigned unique ID for this managed resource.
- domain
Extension StringId - The id of the domain extension.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing ListenerDomainExtension Resource
Get an existing ListenerDomainExtension 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?: ListenerDomainExtensionState, opts?: CustomResourceOptions): ListenerDomainExtension
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
certificate_id: Optional[str] = None,
domain: Optional[str] = None,
domain_extension_id: Optional[str] = None,
listener_id: Optional[str] = None) -> ListenerDomainExtension
func GetListenerDomainExtension(ctx *Context, name string, id IDInput, state *ListenerDomainExtensionState, opts ...ResourceOption) (*ListenerDomainExtension, error)
public static ListenerDomainExtension Get(string name, Input<string> id, ListenerDomainExtensionState? state, CustomResourceOptions? opts = null)
public static ListenerDomainExtension get(String name, Output<String> id, ListenerDomainExtensionState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- 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.
- Certificate
Id string - Server certificate used for the domain name.
- Domain string
- The domain name. The maximum number of associated domain names for an HTTPS listener is 20, with a value range of 1 to 20.
- Domain
Extension stringId - The id of the domain extension.
- Listener
Id string - The listener id. Only HTTPS listener is effective.
- Certificate
Id string - Server certificate used for the domain name.
- Domain string
- The domain name. The maximum number of associated domain names for an HTTPS listener is 20, with a value range of 1 to 20.
- Domain
Extension stringId - The id of the domain extension.
- Listener
Id string - The listener id. Only HTTPS listener is effective.
- certificate
Id String - Server certificate used for the domain name.
- domain String
- The domain name. The maximum number of associated domain names for an HTTPS listener is 20, with a value range of 1 to 20.
- domain
Extension StringId - The id of the domain extension.
- listener
Id String - The listener id. Only HTTPS listener is effective.
- certificate
Id string - Server certificate used for the domain name.
- domain string
- The domain name. The maximum number of associated domain names for an HTTPS listener is 20, with a value range of 1 to 20.
- domain
Extension stringId - The id of the domain extension.
- listener
Id string - The listener id. Only HTTPS listener is effective.
- certificate_
id str - Server certificate used for the domain name.
- domain str
- The domain name. The maximum number of associated domain names for an HTTPS listener is 20, with a value range of 1 to 20.
- domain_
extension_ strid - The id of the domain extension.
- listener_
id str - The listener id. Only HTTPS listener is effective.
- certificate
Id String - Server certificate used for the domain name.
- domain String
- The domain name. The maximum number of associated domain names for an HTTPS listener is 20, with a value range of 1 to 20.
- domain
Extension StringId - The id of the domain extension.
- listener
Id String - The listener id. Only HTTPS listener is effective.
Import
AlbListenerDomainExtension can be imported using the listener id and domain extension id, e.g.
$ pulumi import volcengine:alb/listenerDomainExtension:ListenerDomainExtension default listenerId:extensionId
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- volcengine volcengine/pulumi-volcengine
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
volcengine
Terraform Provider.