alicloud.alb.Listener
Explore with Pulumi AI
Provides a Application Load Balancer (ALB) Listener resource.
For information about Application Load Balancer (ALB) Listener and how to use it, see What is Listener.
NOTE: Available since v1.133.0.
Create Listener Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Listener(name: string, args: ListenerArgs, opts?: CustomResourceOptions);
@overload
def Listener(resource_name: str,
args: ListenerArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Listener(resource_name: str,
opts: Optional[ResourceOptions] = None,
default_actions: Optional[Sequence[ListenerDefaultActionArgs]] = None,
load_balancer_id: Optional[str] = None,
listener_protocol: Optional[str] = None,
listener_port: Optional[int] = None,
idle_timeout: Optional[int] = None,
acl_config: Optional[ListenerAclConfigArgs] = None,
ca_enabled: Optional[bool] = None,
dry_run: Optional[bool] = None,
gzip_enabled: Optional[bool] = None,
http2_enabled: Optional[bool] = None,
access_log_record_customized_headers_enabled: Optional[bool] = None,
listener_description: Optional[str] = None,
ca_certificates: Optional[Sequence[ListenerCaCertificateArgs]] = None,
certificates: Optional[ListenerCertificatesArgs] = None,
access_log_tracing_config: Optional[ListenerAccessLogTracingConfigArgs] = None,
quic_config: Optional[ListenerQuicConfigArgs] = None,
request_timeout: Optional[int] = None,
security_policy_id: Optional[str] = None,
status: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None,
x_forwarded_for_config: Optional[ListenerXForwardedForConfigArgs] = None)
func NewListener(ctx *Context, name string, args ListenerArgs, opts ...ResourceOption) (*Listener, error)
public Listener(string name, ListenerArgs args, CustomResourceOptions? opts = null)
public Listener(String name, ListenerArgs args)
public Listener(String name, ListenerArgs args, CustomResourceOptions options)
type: alicloud:alb:Listener
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 ListenerArgs
- 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 ListenerArgs
- 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 ListenerArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ListenerArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ListenerArgs
- 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 listenerResource = new AliCloud.Alb.Listener("listenerResource", new()
{
DefaultActions = new[]
{
new AliCloud.Alb.Inputs.ListenerDefaultActionArgs
{
Type = "string",
ForwardGroupConfig = new AliCloud.Alb.Inputs.ListenerDefaultActionForwardGroupConfigArgs
{
ServerGroupTuples = new[]
{
new AliCloud.Alb.Inputs.ListenerDefaultActionForwardGroupConfigServerGroupTupleArgs
{
ServerGroupId = "string",
},
},
},
},
},
LoadBalancerId = "string",
ListenerProtocol = "string",
ListenerPort = 0,
IdleTimeout = 0,
CaEnabled = false,
DryRun = false,
GzipEnabled = false,
Http2Enabled = false,
AccessLogRecordCustomizedHeadersEnabled = false,
ListenerDescription = "string",
CaCertificates = new[]
{
new AliCloud.Alb.Inputs.ListenerCaCertificateArgs
{
CertificateId = "string",
},
},
Certificates = new AliCloud.Alb.Inputs.ListenerCertificatesArgs
{
CertificateId = "string",
},
AccessLogTracingConfig = new AliCloud.Alb.Inputs.ListenerAccessLogTracingConfigArgs
{
TracingEnabled = false,
TracingSample = 0,
TracingType = "string",
},
QuicConfig = new AliCloud.Alb.Inputs.ListenerQuicConfigArgs
{
QuicListenerId = "string",
QuicUpgradeEnabled = false,
},
RequestTimeout = 0,
SecurityPolicyId = "string",
Status = "string",
Tags =
{
{ "string", "string" },
},
XForwardedForConfig = new AliCloud.Alb.Inputs.ListenerXForwardedForConfigArgs
{
XForwardedForClientCertClientVerifyAlias = "string",
XForwardedForClientCertClientVerifyEnabled = false,
XForwardedForClientCertFingerPrintAlias = "string",
XForwardedForClientCertFingerPrintEnabled = false,
XForwardedForClientCertIssuerDnAlias = "string",
XForwardedForClientCertIssuerDnEnabled = false,
XForwardedForClientCertSubjectDnAlias = "string",
XForwardedForClientCertSubjectDnEnabled = false,
XForwardedForClientSourceIpsEnabled = false,
XForwardedForClientSourceIpsTrusted = "string",
XForwardedForClientSrcPortEnabled = false,
XForwardedForEnabled = false,
XForwardedForHostEnabled = false,
XForwardedForProcessingMode = "string",
XForwardedForProtoEnabled = false,
XForwardedForSlbIdEnabled = false,
XForwardedForSlbPortEnabled = false,
},
});
example, err := alb.NewListener(ctx, "listenerResource", &alb.ListenerArgs{
DefaultActions: alb.ListenerDefaultActionArray{
&alb.ListenerDefaultActionArgs{
Type: pulumi.String("string"),
ForwardGroupConfig: &alb.ListenerDefaultActionForwardGroupConfigArgs{
ServerGroupTuples: alb.ListenerDefaultActionForwardGroupConfigServerGroupTupleArray{
&alb.ListenerDefaultActionForwardGroupConfigServerGroupTupleArgs{
ServerGroupId: pulumi.String("string"),
},
},
},
},
},
LoadBalancerId: pulumi.String("string"),
ListenerProtocol: pulumi.String("string"),
ListenerPort: pulumi.Int(0),
IdleTimeout: pulumi.Int(0),
CaEnabled: pulumi.Bool(false),
DryRun: pulumi.Bool(false),
GzipEnabled: pulumi.Bool(false),
Http2Enabled: pulumi.Bool(false),
AccessLogRecordCustomizedHeadersEnabled: pulumi.Bool(false),
ListenerDescription: pulumi.String("string"),
CaCertificates: alb.ListenerCaCertificateArray{
&alb.ListenerCaCertificateArgs{
CertificateId: pulumi.String("string"),
},
},
Certificates: &alb.ListenerCertificatesArgs{
CertificateId: pulumi.String("string"),
},
AccessLogTracingConfig: &alb.ListenerAccessLogTracingConfigArgs{
TracingEnabled: pulumi.Bool(false),
TracingSample: pulumi.Int(0),
TracingType: pulumi.String("string"),
},
QuicConfig: &alb.ListenerQuicConfigArgs{
QuicListenerId: pulumi.String("string"),
QuicUpgradeEnabled: pulumi.Bool(false),
},
RequestTimeout: pulumi.Int(0),
SecurityPolicyId: pulumi.String("string"),
Status: pulumi.String("string"),
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
XForwardedForConfig: &alb.ListenerXForwardedForConfigArgs{
XForwardedForClientCertClientVerifyAlias: pulumi.String("string"),
XForwardedForClientCertClientVerifyEnabled: pulumi.Bool(false),
XForwardedForClientCertFingerPrintAlias: pulumi.String("string"),
XForwardedForClientCertFingerPrintEnabled: pulumi.Bool(false),
XForwardedForClientCertIssuerDnAlias: pulumi.String("string"),
XForwardedForClientCertIssuerDnEnabled: pulumi.Bool(false),
XForwardedForClientCertSubjectDnAlias: pulumi.String("string"),
XForwardedForClientCertSubjectDnEnabled: pulumi.Bool(false),
XForwardedForClientSourceIpsEnabled: pulumi.Bool(false),
XForwardedForClientSourceIpsTrusted: pulumi.String("string"),
XForwardedForClientSrcPortEnabled: pulumi.Bool(false),
XForwardedForEnabled: pulumi.Bool(false),
XForwardedForHostEnabled: pulumi.Bool(false),
XForwardedForProcessingMode: pulumi.String("string"),
XForwardedForProtoEnabled: pulumi.Bool(false),
XForwardedForSlbIdEnabled: pulumi.Bool(false),
XForwardedForSlbPortEnabled: pulumi.Bool(false),
},
})
var listenerResource = new Listener("listenerResource", ListenerArgs.builder()
.defaultActions(ListenerDefaultActionArgs.builder()
.type("string")
.forwardGroupConfig(ListenerDefaultActionForwardGroupConfigArgs.builder()
.serverGroupTuples(ListenerDefaultActionForwardGroupConfigServerGroupTupleArgs.builder()
.serverGroupId("string")
.build())
.build())
.build())
.loadBalancerId("string")
.listenerProtocol("string")
.listenerPort(0)
.idleTimeout(0)
.caEnabled(false)
.dryRun(false)
.gzipEnabled(false)
.http2Enabled(false)
.accessLogRecordCustomizedHeadersEnabled(false)
.listenerDescription("string")
.caCertificates(ListenerCaCertificateArgs.builder()
.certificateId("string")
.build())
.certificates(ListenerCertificatesArgs.builder()
.certificateId("string")
.build())
.accessLogTracingConfig(ListenerAccessLogTracingConfigArgs.builder()
.tracingEnabled(false)
.tracingSample(0)
.tracingType("string")
.build())
.quicConfig(ListenerQuicConfigArgs.builder()
.quicListenerId("string")
.quicUpgradeEnabled(false)
.build())
.requestTimeout(0)
.securityPolicyId("string")
.status("string")
.tags(Map.of("string", "string"))
.xForwardedForConfig(ListenerXForwardedForConfigArgs.builder()
.xForwardedForClientCertClientVerifyAlias("string")
.xForwardedForClientCertClientVerifyEnabled(false)
.xForwardedForClientCertFingerPrintAlias("string")
.xForwardedForClientCertFingerPrintEnabled(false)
.xForwardedForClientCertIssuerDnAlias("string")
.xForwardedForClientCertIssuerDnEnabled(false)
.xForwardedForClientCertSubjectDnAlias("string")
.xForwardedForClientCertSubjectDnEnabled(false)
.xForwardedForClientSourceIpsEnabled(false)
.xForwardedForClientSourceIpsTrusted("string")
.xForwardedForClientSrcPortEnabled(false)
.xForwardedForEnabled(false)
.xForwardedForHostEnabled(false)
.xForwardedForProcessingMode("string")
.xForwardedForProtoEnabled(false)
.xForwardedForSlbIdEnabled(false)
.xForwardedForSlbPortEnabled(false)
.build())
.build());
listener_resource = alicloud.alb.Listener("listenerResource",
default_actions=[{
"type": "string",
"forward_group_config": {
"server_group_tuples": [{
"server_group_id": "string",
}],
},
}],
load_balancer_id="string",
listener_protocol="string",
listener_port=0,
idle_timeout=0,
ca_enabled=False,
dry_run=False,
gzip_enabled=False,
http2_enabled=False,
access_log_record_customized_headers_enabled=False,
listener_description="string",
ca_certificates=[{
"certificate_id": "string",
}],
certificates={
"certificate_id": "string",
},
access_log_tracing_config={
"tracing_enabled": False,
"tracing_sample": 0,
"tracing_type": "string",
},
quic_config={
"quic_listener_id": "string",
"quic_upgrade_enabled": False,
},
request_timeout=0,
security_policy_id="string",
status="string",
tags={
"string": "string",
},
x_forwarded_for_config={
"x_forwarded_for_client_cert_client_verify_alias": "string",
"x_forwarded_for_client_cert_client_verify_enabled": False,
"x_forwarded_for_client_cert_finger_print_alias": "string",
"x_forwarded_for_client_cert_finger_print_enabled": False,
"x_forwarded_for_client_cert_issuer_dn_alias": "string",
"x_forwarded_for_client_cert_issuer_dn_enabled": False,
"x_forwarded_for_client_cert_subject_dn_alias": "string",
"x_forwarded_for_client_cert_subject_dn_enabled": False,
"x_forwarded_for_client_source_ips_enabled": False,
"x_forwarded_for_client_source_ips_trusted": "string",
"x_forwarded_for_client_src_port_enabled": False,
"x_forwarded_for_enabled": False,
"x_forwarded_for_host_enabled": False,
"x_forwarded_for_processing_mode": "string",
"x_forwarded_for_proto_enabled": False,
"x_forwarded_for_slb_id_enabled": False,
"x_forwarded_for_slb_port_enabled": False,
})
const listenerResource = new alicloud.alb.Listener("listenerResource", {
defaultActions: [{
type: "string",
forwardGroupConfig: {
serverGroupTuples: [{
serverGroupId: "string",
}],
},
}],
loadBalancerId: "string",
listenerProtocol: "string",
listenerPort: 0,
idleTimeout: 0,
caEnabled: false,
dryRun: false,
gzipEnabled: false,
http2Enabled: false,
accessLogRecordCustomizedHeadersEnabled: false,
listenerDescription: "string",
caCertificates: [{
certificateId: "string",
}],
certificates: {
certificateId: "string",
},
accessLogTracingConfig: {
tracingEnabled: false,
tracingSample: 0,
tracingType: "string",
},
quicConfig: {
quicListenerId: "string",
quicUpgradeEnabled: false,
},
requestTimeout: 0,
securityPolicyId: "string",
status: "string",
tags: {
string: "string",
},
xForwardedForConfig: {
xForwardedForClientCertClientVerifyAlias: "string",
xForwardedForClientCertClientVerifyEnabled: false,
xForwardedForClientCertFingerPrintAlias: "string",
xForwardedForClientCertFingerPrintEnabled: false,
xForwardedForClientCertIssuerDnAlias: "string",
xForwardedForClientCertIssuerDnEnabled: false,
xForwardedForClientCertSubjectDnAlias: "string",
xForwardedForClientCertSubjectDnEnabled: false,
xForwardedForClientSourceIpsEnabled: false,
xForwardedForClientSourceIpsTrusted: "string",
xForwardedForClientSrcPortEnabled: false,
xForwardedForEnabled: false,
xForwardedForHostEnabled: false,
xForwardedForProcessingMode: "string",
xForwardedForProtoEnabled: false,
xForwardedForSlbIdEnabled: false,
xForwardedForSlbPortEnabled: false,
},
});
type: alicloud:alb:Listener
properties:
accessLogRecordCustomizedHeadersEnabled: false
accessLogTracingConfig:
tracingEnabled: false
tracingSample: 0
tracingType: string
caCertificates:
- certificateId: string
caEnabled: false
certificates:
certificateId: string
defaultActions:
- forwardGroupConfig:
serverGroupTuples:
- serverGroupId: string
type: string
dryRun: false
gzipEnabled: false
http2Enabled: false
idleTimeout: 0
listenerDescription: string
listenerPort: 0
listenerProtocol: string
loadBalancerId: string
quicConfig:
quicListenerId: string
quicUpgradeEnabled: false
requestTimeout: 0
securityPolicyId: string
status: string
tags:
string: string
xForwardedForConfig:
xForwardedForClientCertClientVerifyAlias: string
xForwardedForClientCertClientVerifyEnabled: false
xForwardedForClientCertFingerPrintAlias: string
xForwardedForClientCertFingerPrintEnabled: false
xForwardedForClientCertIssuerDnAlias: string
xForwardedForClientCertIssuerDnEnabled: false
xForwardedForClientCertSubjectDnAlias: string
xForwardedForClientCertSubjectDnEnabled: false
xForwardedForClientSourceIpsEnabled: false
xForwardedForClientSourceIpsTrusted: string
xForwardedForClientSrcPortEnabled: false
xForwardedForEnabled: false
xForwardedForHostEnabled: false
xForwardedForProcessingMode: string
xForwardedForProtoEnabled: false
xForwardedForSlbIdEnabled: false
xForwardedForSlbPortEnabled: false
Listener 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 Listener resource accepts the following input properties:
- Default
Actions List<Pulumi.Ali Cloud. Alb. Inputs. Listener Default Action> - The Default Rule Action List See
default_actions
below. - Listener
Port int - The SLB Instance Front-End, and Those of the Ports Used. Value: 1~65535.
- Listener
Protocol string - Snooping Protocols. Valid Values: HTTP, HTTPS Or QuIC.
- Load
Balancer stringId - The SLB Instance Id.
- Access
Log boolRecord Customized Headers Enabled Access Log Whether to Enable Carry Custom Header Field.
Value: True **** Or False * *.
Default Value: False * *.
NOTE: Only Instances outside the Security Group to Access the Log Switch
accesslogenabled
Open, in Order to Set This Parameter to the **True * *.- Access
Log Pulumi.Tracing Config Ali Cloud. Alb. Inputs. Listener Access Log Tracing Config - Xtrace Configuration Information. See
access_log_tracing_config
below. - Acl
Config Pulumi.Ali Cloud. Alb. Inputs. Listener Acl Config - The configurations of the access control lists (ACLs). See
acl_config
below for details. NOTE: Fieldacl_config
has been deprecated from provider version 1.163.0, and it will be removed in the future version. Please use the new resourcealicloud.alb.ListenerAclAttachment
., - Ca
Certificates List<Pulumi.Ali Cloud. Alb. Inputs. Listener Ca Certificate> - The list of certificates. See
ca_certificates
below. - Ca
Enabled bool - Whether to turn on two-way authentication. Value:
- Certificates
Pulumi.
Ali Cloud. Alb. Inputs. Listener Certificates - The list of certificates. See
certificates
below. - Dry
Run bool - Whether to PreCheck only this request. Value:
- Gzip
Enabled bool - Whether to Enable Gzip Compression, as a Specific File Type on a Compression. Valid Values: True Or False. Default Value: TRUE.
- Http2Enabled bool
- Whether to Enable HTTP/2 Features. Valid Values: True Or False. Default Value: TRUE.
- Idle
Timeout int - Specify the Connection Idle Timeout Value: 1 to 60 miao.
- Listener
Description string - Set the IP Address of the Listened Description. Length Is from 2 to 256 Characters.
- Quic
Config Pulumi.Ali Cloud. Alb. Inputs. Listener Quic Config - Configuration Associated with the QuIC Listening See
quic_config
below. - Request
Timeout int - The Specified Request Timeout Time. Value: 1~180 Seconds. Default Value: 60 miao. If the Timeout Time Within the Back-End Server Has Not Answered the SLB Will Give up Waiting, the Client Returns the HTTP 504 Error Code.
- Security
Policy stringId - Security Policy
- Status string
- The Current IP Address of the Listened State
- Dictionary<string, string>
- The tag of the resource
- XForwarded
For Pulumi.Config Ali Cloud. Alb. Inputs. Listener XForwarded For Config - xforwardfor Related Attribute Configuration See
x_forwarded_for_config
below.
- Default
Actions []ListenerDefault Action Args - The Default Rule Action List See
default_actions
below. - Listener
Port int - The SLB Instance Front-End, and Those of the Ports Used. Value: 1~65535.
- Listener
Protocol string - Snooping Protocols. Valid Values: HTTP, HTTPS Or QuIC.
- Load
Balancer stringId - The SLB Instance Id.
- Access
Log boolRecord Customized Headers Enabled Access Log Whether to Enable Carry Custom Header Field.
Value: True **** Or False * *.
Default Value: False * *.
NOTE: Only Instances outside the Security Group to Access the Log Switch
accesslogenabled
Open, in Order to Set This Parameter to the **True * *.- Access
Log ListenerTracing Config Access Log Tracing Config Args - Xtrace Configuration Information. See
access_log_tracing_config
below. - Acl
Config ListenerAcl Config Args - The configurations of the access control lists (ACLs). See
acl_config
below for details. NOTE: Fieldacl_config
has been deprecated from provider version 1.163.0, and it will be removed in the future version. Please use the new resourcealicloud.alb.ListenerAclAttachment
., - Ca
Certificates []ListenerCa Certificate Args - The list of certificates. See
ca_certificates
below. - Ca
Enabled bool - Whether to turn on two-way authentication. Value:
- Certificates
Listener
Certificates Args - The list of certificates. See
certificates
below. - Dry
Run bool - Whether to PreCheck only this request. Value:
- Gzip
Enabled bool - Whether to Enable Gzip Compression, as a Specific File Type on a Compression. Valid Values: True Or False. Default Value: TRUE.
- Http2Enabled bool
- Whether to Enable HTTP/2 Features. Valid Values: True Or False. Default Value: TRUE.
- Idle
Timeout int - Specify the Connection Idle Timeout Value: 1 to 60 miao.
- Listener
Description string - Set the IP Address of the Listened Description. Length Is from 2 to 256 Characters.
- Quic
Config ListenerQuic Config Args - Configuration Associated with the QuIC Listening See
quic_config
below. - Request
Timeout int - The Specified Request Timeout Time. Value: 1~180 Seconds. Default Value: 60 miao. If the Timeout Time Within the Back-End Server Has Not Answered the SLB Will Give up Waiting, the Client Returns the HTTP 504 Error Code.
- Security
Policy stringId - Security Policy
- Status string
- The Current IP Address of the Listened State
- map[string]string
- The tag of the resource
- XForwarded
For ListenerConfig XForwarded For Config Args - xforwardfor Related Attribute Configuration See
x_forwarded_for_config
below.
- default
Actions List<ListenerDefault Action> - The Default Rule Action List See
default_actions
below. - listener
Port Integer - The SLB Instance Front-End, and Those of the Ports Used. Value: 1~65535.
- listener
Protocol String - Snooping Protocols. Valid Values: HTTP, HTTPS Or QuIC.
- load
Balancer StringId - The SLB Instance Id.
- access
Log BooleanRecord Customized Headers Enabled Access Log Whether to Enable Carry Custom Header Field.
Value: True **** Or False * *.
Default Value: False * *.
NOTE: Only Instances outside the Security Group to Access the Log Switch
accesslogenabled
Open, in Order to Set This Parameter to the **True * *.- access
Log ListenerTracing Config Access Log Tracing Config - Xtrace Configuration Information. See
access_log_tracing_config
below. - acl
Config ListenerAcl Config - The configurations of the access control lists (ACLs). See
acl_config
below for details. NOTE: Fieldacl_config
has been deprecated from provider version 1.163.0, and it will be removed in the future version. Please use the new resourcealicloud.alb.ListenerAclAttachment
., - ca
Certificates List<ListenerCa Certificate> - The list of certificates. See
ca_certificates
below. - ca
Enabled Boolean - Whether to turn on two-way authentication. Value:
- certificates
Listener
Certificates - The list of certificates. See
certificates
below. - dry
Run Boolean - Whether to PreCheck only this request. Value:
- gzip
Enabled Boolean - Whether to Enable Gzip Compression, as a Specific File Type on a Compression. Valid Values: True Or False. Default Value: TRUE.
- http2Enabled Boolean
- Whether to Enable HTTP/2 Features. Valid Values: True Or False. Default Value: TRUE.
- idle
Timeout Integer - Specify the Connection Idle Timeout Value: 1 to 60 miao.
- listener
Description String - Set the IP Address of the Listened Description. Length Is from 2 to 256 Characters.
- quic
Config ListenerQuic Config - Configuration Associated with the QuIC Listening See
quic_config
below. - request
Timeout Integer - The Specified Request Timeout Time. Value: 1~180 Seconds. Default Value: 60 miao. If the Timeout Time Within the Back-End Server Has Not Answered the SLB Will Give up Waiting, the Client Returns the HTTP 504 Error Code.
- security
Policy StringId - Security Policy
- status String
- The Current IP Address of the Listened State
- Map<String,String>
- The tag of the resource
- x
Forwarded ListenerFor Config XForwarded For Config - xforwardfor Related Attribute Configuration See
x_forwarded_for_config
below.
- default
Actions ListenerDefault Action[] - The Default Rule Action List See
default_actions
below. - listener
Port number - The SLB Instance Front-End, and Those of the Ports Used. Value: 1~65535.
- listener
Protocol string - Snooping Protocols. Valid Values: HTTP, HTTPS Or QuIC.
- load
Balancer stringId - The SLB Instance Id.
- access
Log booleanRecord Customized Headers Enabled Access Log Whether to Enable Carry Custom Header Field.
Value: True **** Or False * *.
Default Value: False * *.
NOTE: Only Instances outside the Security Group to Access the Log Switch
accesslogenabled
Open, in Order to Set This Parameter to the **True * *.- access
Log ListenerTracing Config Access Log Tracing Config - Xtrace Configuration Information. See
access_log_tracing_config
below. - acl
Config ListenerAcl Config - The configurations of the access control lists (ACLs). See
acl_config
below for details. NOTE: Fieldacl_config
has been deprecated from provider version 1.163.0, and it will be removed in the future version. Please use the new resourcealicloud.alb.ListenerAclAttachment
., - ca
Certificates ListenerCa Certificate[] - The list of certificates. See
ca_certificates
below. - ca
Enabled boolean - Whether to turn on two-way authentication. Value:
- certificates
Listener
Certificates - The list of certificates. See
certificates
below. - dry
Run boolean - Whether to PreCheck only this request. Value:
- gzip
Enabled boolean - Whether to Enable Gzip Compression, as a Specific File Type on a Compression. Valid Values: True Or False. Default Value: TRUE.
- http2Enabled boolean
- Whether to Enable HTTP/2 Features. Valid Values: True Or False. Default Value: TRUE.
- idle
Timeout number - Specify the Connection Idle Timeout Value: 1 to 60 miao.
- listener
Description string - Set the IP Address of the Listened Description. Length Is from 2 to 256 Characters.
- quic
Config ListenerQuic Config - Configuration Associated with the QuIC Listening See
quic_config
below. - request
Timeout number - The Specified Request Timeout Time. Value: 1~180 Seconds. Default Value: 60 miao. If the Timeout Time Within the Back-End Server Has Not Answered the SLB Will Give up Waiting, the Client Returns the HTTP 504 Error Code.
- security
Policy stringId - Security Policy
- status string
- The Current IP Address of the Listened State
- {[key: string]: string}
- The tag of the resource
- x
Forwarded ListenerFor Config XForwarded For Config - xforwardfor Related Attribute Configuration See
x_forwarded_for_config
below.
- default_
actions Sequence[ListenerDefault Action Args] - The Default Rule Action List See
default_actions
below. - listener_
port int - The SLB Instance Front-End, and Those of the Ports Used. Value: 1~65535.
- listener_
protocol str - Snooping Protocols. Valid Values: HTTP, HTTPS Or QuIC.
- load_
balancer_ strid - The SLB Instance Id.
- access_
log_ boolrecord_ customized_ headers_ enabled Access Log Whether to Enable Carry Custom Header Field.
Value: True **** Or False * *.
Default Value: False * *.
NOTE: Only Instances outside the Security Group to Access the Log Switch
accesslogenabled
Open, in Order to Set This Parameter to the **True * *.- access_
log_ Listenertracing_ config Access Log Tracing Config Args - Xtrace Configuration Information. See
access_log_tracing_config
below. - acl_
config ListenerAcl Config Args - The configurations of the access control lists (ACLs). See
acl_config
below for details. NOTE: Fieldacl_config
has been deprecated from provider version 1.163.0, and it will be removed in the future version. Please use the new resourcealicloud.alb.ListenerAclAttachment
., - ca_
certificates Sequence[ListenerCa Certificate Args] - The list of certificates. See
ca_certificates
below. - ca_
enabled bool - Whether to turn on two-way authentication. Value:
- certificates
Listener
Certificates Args - The list of certificates. See
certificates
below. - dry_
run bool - Whether to PreCheck only this request. Value:
- gzip_
enabled bool - Whether to Enable Gzip Compression, as a Specific File Type on a Compression. Valid Values: True Or False. Default Value: TRUE.
- http2_
enabled bool - Whether to Enable HTTP/2 Features. Valid Values: True Or False. Default Value: TRUE.
- idle_
timeout int - Specify the Connection Idle Timeout Value: 1 to 60 miao.
- listener_
description str - Set the IP Address of the Listened Description. Length Is from 2 to 256 Characters.
- quic_
config ListenerQuic Config Args - Configuration Associated with the QuIC Listening See
quic_config
below. - request_
timeout int - The Specified Request Timeout Time. Value: 1~180 Seconds. Default Value: 60 miao. If the Timeout Time Within the Back-End Server Has Not Answered the SLB Will Give up Waiting, the Client Returns the HTTP 504 Error Code.
- security_
policy_ strid - Security Policy
- status str
- The Current IP Address of the Listened State
- Mapping[str, str]
- The tag of the resource
- x_
forwarded_ Listenerfor_ config XForwarded For Config Args - xforwardfor Related Attribute Configuration See
x_forwarded_for_config
below.
- default
Actions List<Property Map> - The Default Rule Action List See
default_actions
below. - listener
Port Number - The SLB Instance Front-End, and Those of the Ports Used. Value: 1~65535.
- listener
Protocol String - Snooping Protocols. Valid Values: HTTP, HTTPS Or QuIC.
- load
Balancer StringId - The SLB Instance Id.
- access
Log BooleanRecord Customized Headers Enabled Access Log Whether to Enable Carry Custom Header Field.
Value: True **** Or False * *.
Default Value: False * *.
NOTE: Only Instances outside the Security Group to Access the Log Switch
accesslogenabled
Open, in Order to Set This Parameter to the **True * *.- access
Log Property MapTracing Config - Xtrace Configuration Information. See
access_log_tracing_config
below. - acl
Config Property Map - The configurations of the access control lists (ACLs). See
acl_config
below for details. NOTE: Fieldacl_config
has been deprecated from provider version 1.163.0, and it will be removed in the future version. Please use the new resourcealicloud.alb.ListenerAclAttachment
., - ca
Certificates List<Property Map> - The list of certificates. See
ca_certificates
below. - ca
Enabled Boolean - Whether to turn on two-way authentication. Value:
- certificates Property Map
- The list of certificates. See
certificates
below. - dry
Run Boolean - Whether to PreCheck only this request. Value:
- gzip
Enabled Boolean - Whether to Enable Gzip Compression, as a Specific File Type on a Compression. Valid Values: True Or False. Default Value: TRUE.
- http2Enabled Boolean
- Whether to Enable HTTP/2 Features. Valid Values: True Or False. Default Value: TRUE.
- idle
Timeout Number - Specify the Connection Idle Timeout Value: 1 to 60 miao.
- listener
Description String - Set the IP Address of the Listened Description. Length Is from 2 to 256 Characters.
- quic
Config Property Map - Configuration Associated with the QuIC Listening See
quic_config
below. - request
Timeout Number - The Specified Request Timeout Time. Value: 1~180 Seconds. Default Value: 60 miao. If the Timeout Time Within the Back-End Server Has Not Answered the SLB Will Give up Waiting, the Client Returns the HTTP 504 Error Code.
- security
Policy StringId - Security Policy
- status String
- The Current IP Address of the Listened State
- Map<String>
- The tag of the resource
- x
Forwarded Property MapFor Config - xforwardfor Related Attribute Configuration See
x_forwarded_for_config
below.
Outputs
All input properties are implicitly available as output properties. Additionally, the Listener 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 Listener Resource
Get an existing Listener 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?: ListenerState, opts?: CustomResourceOptions): Listener
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
access_log_record_customized_headers_enabled: Optional[bool] = None,
access_log_tracing_config: Optional[ListenerAccessLogTracingConfigArgs] = None,
acl_config: Optional[ListenerAclConfigArgs] = None,
ca_certificates: Optional[Sequence[ListenerCaCertificateArgs]] = None,
ca_enabled: Optional[bool] = None,
certificates: Optional[ListenerCertificatesArgs] = None,
default_actions: Optional[Sequence[ListenerDefaultActionArgs]] = None,
dry_run: Optional[bool] = None,
gzip_enabled: Optional[bool] = None,
http2_enabled: Optional[bool] = None,
idle_timeout: Optional[int] = None,
listener_description: Optional[str] = None,
listener_port: Optional[int] = None,
listener_protocol: Optional[str] = None,
load_balancer_id: Optional[str] = None,
quic_config: Optional[ListenerQuicConfigArgs] = None,
request_timeout: Optional[int] = None,
security_policy_id: Optional[str] = None,
status: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None,
x_forwarded_for_config: Optional[ListenerXForwardedForConfigArgs] = None) -> Listener
func GetListener(ctx *Context, name string, id IDInput, state *ListenerState, opts ...ResourceOption) (*Listener, error)
public static Listener Get(string name, Input<string> id, ListenerState? state, CustomResourceOptions? opts = null)
public static Listener get(String name, Output<String> id, ListenerState state, CustomResourceOptions options)
resources: _: type: alicloud:alb:Listener 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.
- Access
Log boolRecord Customized Headers Enabled Access Log Whether to Enable Carry Custom Header Field.
Value: True **** Or False * *.
Default Value: False * *.
NOTE: Only Instances outside the Security Group to Access the Log Switch
accesslogenabled
Open, in Order to Set This Parameter to the **True * *.- Access
Log Pulumi.Tracing Config Ali Cloud. Alb. Inputs. Listener Access Log Tracing Config - Xtrace Configuration Information. See
access_log_tracing_config
below. - Acl
Config Pulumi.Ali Cloud. Alb. Inputs. Listener Acl Config - The configurations of the access control lists (ACLs). See
acl_config
below for details. NOTE: Fieldacl_config
has been deprecated from provider version 1.163.0, and it will be removed in the future version. Please use the new resourcealicloud.alb.ListenerAclAttachment
., - Ca
Certificates List<Pulumi.Ali Cloud. Alb. Inputs. Listener Ca Certificate> - The list of certificates. See
ca_certificates
below. - Ca
Enabled bool - Whether to turn on two-way authentication. Value:
- Certificates
Pulumi.
Ali Cloud. Alb. Inputs. Listener Certificates - The list of certificates. See
certificates
below. - Default
Actions List<Pulumi.Ali Cloud. Alb. Inputs. Listener Default Action> - The Default Rule Action List See
default_actions
below. - Dry
Run bool - Whether to PreCheck only this request. Value:
- Gzip
Enabled bool - Whether to Enable Gzip Compression, as a Specific File Type on a Compression. Valid Values: True Or False. Default Value: TRUE.
- Http2Enabled bool
- Whether to Enable HTTP/2 Features. Valid Values: True Or False. Default Value: TRUE.
- Idle
Timeout int - Specify the Connection Idle Timeout Value: 1 to 60 miao.
- Listener
Description string - Set the IP Address of the Listened Description. Length Is from 2 to 256 Characters.
- Listener
Port int - The SLB Instance Front-End, and Those of the Ports Used. Value: 1~65535.
- Listener
Protocol string - Snooping Protocols. Valid Values: HTTP, HTTPS Or QuIC.
- Load
Balancer stringId - The SLB Instance Id.
- Quic
Config Pulumi.Ali Cloud. Alb. Inputs. Listener Quic Config - Configuration Associated with the QuIC Listening See
quic_config
below. - Request
Timeout int - The Specified Request Timeout Time. Value: 1~180 Seconds. Default Value: 60 miao. If the Timeout Time Within the Back-End Server Has Not Answered the SLB Will Give up Waiting, the Client Returns the HTTP 504 Error Code.
- Security
Policy stringId - Security Policy
- Status string
- The Current IP Address of the Listened State
- Dictionary<string, string>
- The tag of the resource
- XForwarded
For Pulumi.Config Ali Cloud. Alb. Inputs. Listener XForwarded For Config - xforwardfor Related Attribute Configuration See
x_forwarded_for_config
below.
- Access
Log boolRecord Customized Headers Enabled Access Log Whether to Enable Carry Custom Header Field.
Value: True **** Or False * *.
Default Value: False * *.
NOTE: Only Instances outside the Security Group to Access the Log Switch
accesslogenabled
Open, in Order to Set This Parameter to the **True * *.- Access
Log ListenerTracing Config Access Log Tracing Config Args - Xtrace Configuration Information. See
access_log_tracing_config
below. - Acl
Config ListenerAcl Config Args - The configurations of the access control lists (ACLs). See
acl_config
below for details. NOTE: Fieldacl_config
has been deprecated from provider version 1.163.0, and it will be removed in the future version. Please use the new resourcealicloud.alb.ListenerAclAttachment
., - Ca
Certificates []ListenerCa Certificate Args - The list of certificates. See
ca_certificates
below. - Ca
Enabled bool - Whether to turn on two-way authentication. Value:
- Certificates
Listener
Certificates Args - The list of certificates. See
certificates
below. - Default
Actions []ListenerDefault Action Args - The Default Rule Action List See
default_actions
below. - Dry
Run bool - Whether to PreCheck only this request. Value:
- Gzip
Enabled bool - Whether to Enable Gzip Compression, as a Specific File Type on a Compression. Valid Values: True Or False. Default Value: TRUE.
- Http2Enabled bool
- Whether to Enable HTTP/2 Features. Valid Values: True Or False. Default Value: TRUE.
- Idle
Timeout int - Specify the Connection Idle Timeout Value: 1 to 60 miao.
- Listener
Description string - Set the IP Address of the Listened Description. Length Is from 2 to 256 Characters.
- Listener
Port int - The SLB Instance Front-End, and Those of the Ports Used. Value: 1~65535.
- Listener
Protocol string - Snooping Protocols. Valid Values: HTTP, HTTPS Or QuIC.
- Load
Balancer stringId - The SLB Instance Id.
- Quic
Config ListenerQuic Config Args - Configuration Associated with the QuIC Listening See
quic_config
below. - Request
Timeout int - The Specified Request Timeout Time. Value: 1~180 Seconds. Default Value: 60 miao. If the Timeout Time Within the Back-End Server Has Not Answered the SLB Will Give up Waiting, the Client Returns the HTTP 504 Error Code.
- Security
Policy stringId - Security Policy
- Status string
- The Current IP Address of the Listened State
- map[string]string
- The tag of the resource
- XForwarded
For ListenerConfig XForwarded For Config Args - xforwardfor Related Attribute Configuration See
x_forwarded_for_config
below.
- access
Log BooleanRecord Customized Headers Enabled Access Log Whether to Enable Carry Custom Header Field.
Value: True **** Or False * *.
Default Value: False * *.
NOTE: Only Instances outside the Security Group to Access the Log Switch
accesslogenabled
Open, in Order to Set This Parameter to the **True * *.- access
Log ListenerTracing Config Access Log Tracing Config - Xtrace Configuration Information. See
access_log_tracing_config
below. - acl
Config ListenerAcl Config - The configurations of the access control lists (ACLs). See
acl_config
below for details. NOTE: Fieldacl_config
has been deprecated from provider version 1.163.0, and it will be removed in the future version. Please use the new resourcealicloud.alb.ListenerAclAttachment
., - ca
Certificates List<ListenerCa Certificate> - The list of certificates. See
ca_certificates
below. - ca
Enabled Boolean - Whether to turn on two-way authentication. Value:
- certificates
Listener
Certificates - The list of certificates. See
certificates
below. - default
Actions List<ListenerDefault Action> - The Default Rule Action List See
default_actions
below. - dry
Run Boolean - Whether to PreCheck only this request. Value:
- gzip
Enabled Boolean - Whether to Enable Gzip Compression, as a Specific File Type on a Compression. Valid Values: True Or False. Default Value: TRUE.
- http2Enabled Boolean
- Whether to Enable HTTP/2 Features. Valid Values: True Or False. Default Value: TRUE.
- idle
Timeout Integer - Specify the Connection Idle Timeout Value: 1 to 60 miao.
- listener
Description String - Set the IP Address of the Listened Description. Length Is from 2 to 256 Characters.
- listener
Port Integer - The SLB Instance Front-End, and Those of the Ports Used. Value: 1~65535.
- listener
Protocol String - Snooping Protocols. Valid Values: HTTP, HTTPS Or QuIC.
- load
Balancer StringId - The SLB Instance Id.
- quic
Config ListenerQuic Config - Configuration Associated with the QuIC Listening See
quic_config
below. - request
Timeout Integer - The Specified Request Timeout Time. Value: 1~180 Seconds. Default Value: 60 miao. If the Timeout Time Within the Back-End Server Has Not Answered the SLB Will Give up Waiting, the Client Returns the HTTP 504 Error Code.
- security
Policy StringId - Security Policy
- status String
- The Current IP Address of the Listened State
- Map<String,String>
- The tag of the resource
- x
Forwarded ListenerFor Config XForwarded For Config - xforwardfor Related Attribute Configuration See
x_forwarded_for_config
below.
- access
Log booleanRecord Customized Headers Enabled Access Log Whether to Enable Carry Custom Header Field.
Value: True **** Or False * *.
Default Value: False * *.
NOTE: Only Instances outside the Security Group to Access the Log Switch
accesslogenabled
Open, in Order to Set This Parameter to the **True * *.- access
Log ListenerTracing Config Access Log Tracing Config - Xtrace Configuration Information. See
access_log_tracing_config
below. - acl
Config ListenerAcl Config - The configurations of the access control lists (ACLs). See
acl_config
below for details. NOTE: Fieldacl_config
has been deprecated from provider version 1.163.0, and it will be removed in the future version. Please use the new resourcealicloud.alb.ListenerAclAttachment
., - ca
Certificates ListenerCa Certificate[] - The list of certificates. See
ca_certificates
below. - ca
Enabled boolean - Whether to turn on two-way authentication. Value:
- certificates
Listener
Certificates - The list of certificates. See
certificates
below. - default
Actions ListenerDefault Action[] - The Default Rule Action List See
default_actions
below. - dry
Run boolean - Whether to PreCheck only this request. Value:
- gzip
Enabled boolean - Whether to Enable Gzip Compression, as a Specific File Type on a Compression. Valid Values: True Or False. Default Value: TRUE.
- http2Enabled boolean
- Whether to Enable HTTP/2 Features. Valid Values: True Or False. Default Value: TRUE.
- idle
Timeout number - Specify the Connection Idle Timeout Value: 1 to 60 miao.
- listener
Description string - Set the IP Address of the Listened Description. Length Is from 2 to 256 Characters.
- listener
Port number - The SLB Instance Front-End, and Those of the Ports Used. Value: 1~65535.
- listener
Protocol string - Snooping Protocols. Valid Values: HTTP, HTTPS Or QuIC.
- load
Balancer stringId - The SLB Instance Id.
- quic
Config ListenerQuic Config - Configuration Associated with the QuIC Listening See
quic_config
below. - request
Timeout number - The Specified Request Timeout Time. Value: 1~180 Seconds. Default Value: 60 miao. If the Timeout Time Within the Back-End Server Has Not Answered the SLB Will Give up Waiting, the Client Returns the HTTP 504 Error Code.
- security
Policy stringId - Security Policy
- status string
- The Current IP Address of the Listened State
- {[key: string]: string}
- The tag of the resource
- x
Forwarded ListenerFor Config XForwarded For Config - xforwardfor Related Attribute Configuration See
x_forwarded_for_config
below.
- access_
log_ boolrecord_ customized_ headers_ enabled Access Log Whether to Enable Carry Custom Header Field.
Value: True **** Or False * *.
Default Value: False * *.
NOTE: Only Instances outside the Security Group to Access the Log Switch
accesslogenabled
Open, in Order to Set This Parameter to the **True * *.- access_
log_ Listenertracing_ config Access Log Tracing Config Args - Xtrace Configuration Information. See
access_log_tracing_config
below. - acl_
config ListenerAcl Config Args - The configurations of the access control lists (ACLs). See
acl_config
below for details. NOTE: Fieldacl_config
has been deprecated from provider version 1.163.0, and it will be removed in the future version. Please use the new resourcealicloud.alb.ListenerAclAttachment
., - ca_
certificates Sequence[ListenerCa Certificate Args] - The list of certificates. See
ca_certificates
below. - ca_
enabled bool - Whether to turn on two-way authentication. Value:
- certificates
Listener
Certificates Args - The list of certificates. See
certificates
below. - default_
actions Sequence[ListenerDefault Action Args] - The Default Rule Action List See
default_actions
below. - dry_
run bool - Whether to PreCheck only this request. Value:
- gzip_
enabled bool - Whether to Enable Gzip Compression, as a Specific File Type on a Compression. Valid Values: True Or False. Default Value: TRUE.
- http2_
enabled bool - Whether to Enable HTTP/2 Features. Valid Values: True Or False. Default Value: TRUE.
- idle_
timeout int - Specify the Connection Idle Timeout Value: 1 to 60 miao.
- listener_
description str - Set the IP Address of the Listened Description. Length Is from 2 to 256 Characters.
- listener_
port int - The SLB Instance Front-End, and Those of the Ports Used. Value: 1~65535.
- listener_
protocol str - Snooping Protocols. Valid Values: HTTP, HTTPS Or QuIC.
- load_
balancer_ strid - The SLB Instance Id.
- quic_
config ListenerQuic Config Args - Configuration Associated with the QuIC Listening See
quic_config
below. - request_
timeout int - The Specified Request Timeout Time. Value: 1~180 Seconds. Default Value: 60 miao. If the Timeout Time Within the Back-End Server Has Not Answered the SLB Will Give up Waiting, the Client Returns the HTTP 504 Error Code.
- security_
policy_ strid - Security Policy
- status str
- The Current IP Address of the Listened State
- Mapping[str, str]
- The tag of the resource
- x_
forwarded_ Listenerfor_ config XForwarded For Config Args - xforwardfor Related Attribute Configuration See
x_forwarded_for_config
below.
- access
Log BooleanRecord Customized Headers Enabled Access Log Whether to Enable Carry Custom Header Field.
Value: True **** Or False * *.
Default Value: False * *.
NOTE: Only Instances outside the Security Group to Access the Log Switch
accesslogenabled
Open, in Order to Set This Parameter to the **True * *.- access
Log Property MapTracing Config - Xtrace Configuration Information. See
access_log_tracing_config
below. - acl
Config Property Map - The configurations of the access control lists (ACLs). See
acl_config
below for details. NOTE: Fieldacl_config
has been deprecated from provider version 1.163.0, and it will be removed in the future version. Please use the new resourcealicloud.alb.ListenerAclAttachment
., - ca
Certificates List<Property Map> - The list of certificates. See
ca_certificates
below. - ca
Enabled Boolean - Whether to turn on two-way authentication. Value:
- certificates Property Map
- The list of certificates. See
certificates
below. - default
Actions List<Property Map> - The Default Rule Action List See
default_actions
below. - dry
Run Boolean - Whether to PreCheck only this request. Value:
- gzip
Enabled Boolean - Whether to Enable Gzip Compression, as a Specific File Type on a Compression. Valid Values: True Or False. Default Value: TRUE.
- http2Enabled Boolean
- Whether to Enable HTTP/2 Features. Valid Values: True Or False. Default Value: TRUE.
- idle
Timeout Number - Specify the Connection Idle Timeout Value: 1 to 60 miao.
- listener
Description String - Set the IP Address of the Listened Description. Length Is from 2 to 256 Characters.
- listener
Port Number - The SLB Instance Front-End, and Those of the Ports Used. Value: 1~65535.
- listener
Protocol String - Snooping Protocols. Valid Values: HTTP, HTTPS Or QuIC.
- load
Balancer StringId - The SLB Instance Id.
- quic
Config Property Map - Configuration Associated with the QuIC Listening See
quic_config
below. - request
Timeout Number - The Specified Request Timeout Time. Value: 1~180 Seconds. Default Value: 60 miao. If the Timeout Time Within the Back-End Server Has Not Answered the SLB Will Give up Waiting, the Client Returns the HTTP 504 Error Code.
- security
Policy StringId - Security Policy
- status String
- The Current IP Address of the Listened State
- Map<String>
- The tag of the resource
- x
Forwarded Property MapFor Config - xforwardfor Related Attribute Configuration See
x_forwarded_for_config
below.
Supporting Types
ListenerAccessLogTracingConfig, ListenerAccessLogTracingConfigArgs
- Tracing
Enabled bool Xtrace Function.
Value: True **** Or False * *.
Default Value: False * *.
NOTE: Only Instances outside the Security Group to Access the Log Switch
accesslogenabled
Open, in Order to Set This Parameter to the **True * *.- Tracing
Sample int - Xtrace Sampling Rate. Value: 1~10000 **.>
tracingenabled
**True When Effective. - Tracing
Type string Xtrace Type Value Is **Zipkin * *.
NOTE:
tracingenabled
**True When Effective.
- Tracing
Enabled bool Xtrace Function.
Value: True **** Or False * *.
Default Value: False * *.
NOTE: Only Instances outside the Security Group to Access the Log Switch
accesslogenabled
Open, in Order to Set This Parameter to the **True * *.- Tracing
Sample int - Xtrace Sampling Rate. Value: 1~10000 **.>
tracingenabled
**True When Effective. - Tracing
Type string Xtrace Type Value Is **Zipkin * *.
NOTE:
tracingenabled
**True When Effective.
- tracing
Enabled Boolean Xtrace Function.
Value: True **** Or False * *.
Default Value: False * *.
NOTE: Only Instances outside the Security Group to Access the Log Switch
accesslogenabled
Open, in Order to Set This Parameter to the **True * *.- tracing
Sample Integer - Xtrace Sampling Rate. Value: 1~10000 **.>
tracingenabled
**True When Effective. - tracing
Type String Xtrace Type Value Is **Zipkin * *.
NOTE:
tracingenabled
**True When Effective.
- tracing
Enabled boolean Xtrace Function.
Value: True **** Or False * *.
Default Value: False * *.
NOTE: Only Instances outside the Security Group to Access the Log Switch
accesslogenabled
Open, in Order to Set This Parameter to the **True * *.- tracing
Sample number - Xtrace Sampling Rate. Value: 1~10000 **.>
tracingenabled
**True When Effective. - tracing
Type string Xtrace Type Value Is **Zipkin * *.
NOTE:
tracingenabled
**True When Effective.
- tracing_
enabled bool Xtrace Function.
Value: True **** Or False * *.
Default Value: False * *.
NOTE: Only Instances outside the Security Group to Access the Log Switch
accesslogenabled
Open, in Order to Set This Parameter to the **True * *.- tracing_
sample int - Xtrace Sampling Rate. Value: 1~10000 **.>
tracingenabled
**True When Effective. - tracing_
type str Xtrace Type Value Is **Zipkin * *.
NOTE:
tracingenabled
**True When Effective.
- tracing
Enabled Boolean Xtrace Function.
Value: True **** Or False * *.
Default Value: False * *.
NOTE: Only Instances outside the Security Group to Access the Log Switch
accesslogenabled
Open, in Order to Set This Parameter to the **True * *.- tracing
Sample Number - Xtrace Sampling Rate. Value: 1~10000 **.>
tracingenabled
**True When Effective. - tracing
Type String Xtrace Type Value Is **Zipkin * *.
NOTE:
tracingenabled
**True When Effective.
ListenerAclConfig, ListenerAclConfigArgs
- Acl
Relations List<Pulumi.Ali Cloud. Alb. Inputs. Listener Acl Config Acl Relation> - The ACLs that are associated with the listener. See
acl_relations
below for details. - Acl
Type string - The type of the ACL. Valid values:
White
OrBlack
.White
: specifies the ACL as a whitelist. Only requests from the IP addresses or CIDR blocks in the ACL are forwarded. Whitelists apply to scenarios where only specific IP addresses are allowed to access an application. Risks may occur if the whitelist is improperly set. After you set a whitelist for an Application Load Balancer (ALB) listener, only requests from IP addresses that are added to the whitelist are distributed by the listener. If the whitelist is enabled without IP addresses specified, the ALB listener does not forward requests.Black
: All requests from the IP addresses or CIDR blocks in the ACL are denied. The blacklist is used to prevent specified IP addresses from accessing an application. If the blacklist is enabled but the corresponding ACL does not contain IP addresses, the ALB listener forwards all requests.
- Acl
Relations []ListenerAcl Config Acl Relation - The ACLs that are associated with the listener. See
acl_relations
below for details. - Acl
Type string - The type of the ACL. Valid values:
White
OrBlack
.White
: specifies the ACL as a whitelist. Only requests from the IP addresses or CIDR blocks in the ACL are forwarded. Whitelists apply to scenarios where only specific IP addresses are allowed to access an application. Risks may occur if the whitelist is improperly set. After you set a whitelist for an Application Load Balancer (ALB) listener, only requests from IP addresses that are added to the whitelist are distributed by the listener. If the whitelist is enabled without IP addresses specified, the ALB listener does not forward requests.Black
: All requests from the IP addresses or CIDR blocks in the ACL are denied. The blacklist is used to prevent specified IP addresses from accessing an application. If the blacklist is enabled but the corresponding ACL does not contain IP addresses, the ALB listener forwards all requests.
- acl
Relations List<ListenerAcl Config Acl Relation> - The ACLs that are associated with the listener. See
acl_relations
below for details. - acl
Type String - The type of the ACL. Valid values:
White
OrBlack
.White
: specifies the ACL as a whitelist. Only requests from the IP addresses or CIDR blocks in the ACL are forwarded. Whitelists apply to scenarios where only specific IP addresses are allowed to access an application. Risks may occur if the whitelist is improperly set. After you set a whitelist for an Application Load Balancer (ALB) listener, only requests from IP addresses that are added to the whitelist are distributed by the listener. If the whitelist is enabled without IP addresses specified, the ALB listener does not forward requests.Black
: All requests from the IP addresses or CIDR blocks in the ACL are denied. The blacklist is used to prevent specified IP addresses from accessing an application. If the blacklist is enabled but the corresponding ACL does not contain IP addresses, the ALB listener forwards all requests.
- acl
Relations ListenerAcl Config Acl Relation[] - The ACLs that are associated with the listener. See
acl_relations
below for details. - acl
Type string - The type of the ACL. Valid values:
White
OrBlack
.White
: specifies the ACL as a whitelist. Only requests from the IP addresses or CIDR blocks in the ACL are forwarded. Whitelists apply to scenarios where only specific IP addresses are allowed to access an application. Risks may occur if the whitelist is improperly set. After you set a whitelist for an Application Load Balancer (ALB) listener, only requests from IP addresses that are added to the whitelist are distributed by the listener. If the whitelist is enabled without IP addresses specified, the ALB listener does not forward requests.Black
: All requests from the IP addresses or CIDR blocks in the ACL are denied. The blacklist is used to prevent specified IP addresses from accessing an application. If the blacklist is enabled but the corresponding ACL does not contain IP addresses, the ALB listener forwards all requests.
- acl_
relations Sequence[ListenerAcl Config Acl Relation] - The ACLs that are associated with the listener. See
acl_relations
below for details. - acl_
type str - The type of the ACL. Valid values:
White
OrBlack
.White
: specifies the ACL as a whitelist. Only requests from the IP addresses or CIDR blocks in the ACL are forwarded. Whitelists apply to scenarios where only specific IP addresses are allowed to access an application. Risks may occur if the whitelist is improperly set. After you set a whitelist for an Application Load Balancer (ALB) listener, only requests from IP addresses that are added to the whitelist are distributed by the listener. If the whitelist is enabled without IP addresses specified, the ALB listener does not forward requests.Black
: All requests from the IP addresses or CIDR blocks in the ACL are denied. The blacklist is used to prevent specified IP addresses from accessing an application. If the blacklist is enabled but the corresponding ACL does not contain IP addresses, the ALB listener forwards all requests.
- acl
Relations List<Property Map> - The ACLs that are associated with the listener. See
acl_relations
below for details. - acl
Type String - The type of the ACL. Valid values:
White
OrBlack
.White
: specifies the ACL as a whitelist. Only requests from the IP addresses or CIDR blocks in the ACL are forwarded. Whitelists apply to scenarios where only specific IP addresses are allowed to access an application. Risks may occur if the whitelist is improperly set. After you set a whitelist for an Application Load Balancer (ALB) listener, only requests from IP addresses that are added to the whitelist are distributed by the listener. If the whitelist is enabled without IP addresses specified, the ALB listener does not forward requests.Black
: All requests from the IP addresses or CIDR blocks in the ACL are denied. The blacklist is used to prevent specified IP addresses from accessing an application. If the blacklist is enabled but the corresponding ACL does not contain IP addresses, the ALB listener forwards all requests.
ListenerAclConfigAclRelation, ListenerAclConfigAclRelationArgs
ListenerCaCertificate, ListenerCaCertificateArgs
- Certificate
Id string - The ID of the certificate. Currently, only server certificates are supported.
- Certificate
Id string - The ID of the certificate. Currently, only server certificates are supported.
- certificate
Id String - The ID of the certificate. Currently, only server certificates are supported.
- certificate
Id string - The ID of the certificate. Currently, only server certificates are supported.
- certificate_
id str - The ID of the certificate. Currently, only server certificates are supported.
- certificate
Id String - The ID of the certificate. Currently, only server certificates are supported.
ListenerCertificates, ListenerCertificatesArgs
- Certificate
Id string - The ID of the certificate. Currently, only server certificates are supported.
- Certificate
Id string - The ID of the certificate. Currently, only server certificates are supported.
- certificate
Id String - The ID of the certificate. Currently, only server certificates are supported.
- certificate
Id string - The ID of the certificate. Currently, only server certificates are supported.
- certificate_
id str - The ID of the certificate. Currently, only server certificates are supported.
- certificate
Id String - The ID of the certificate. Currently, only server certificates are supported.
ListenerDefaultAction, ListenerDefaultActionArgs
- Type string
- Action Type
- Forward
Group Pulumi.Config Ali Cloud. Alb. Inputs. Listener Default Action Forward Group Config - Forwarding Action Configurations See
forward_group_config
below.
- Type string
- Action Type
- Forward
Group ListenerConfig Default Action Forward Group Config - Forwarding Action Configurations See
forward_group_config
below.
- type String
- Action Type
- forward
Group ListenerConfig Default Action Forward Group Config - Forwarding Action Configurations See
forward_group_config
below.
- type string
- Action Type
- forward
Group ListenerConfig Default Action Forward Group Config - Forwarding Action Configurations See
forward_group_config
below.
- type str
- Action Type
- forward_
group_ Listenerconfig Default Action Forward Group Config - Forwarding Action Configurations See
forward_group_config
below.
- type String
- Action Type
- forward
Group Property MapConfig - Forwarding Action Configurations See
forward_group_config
below.
ListenerDefaultActionForwardGroupConfig, ListenerDefaultActionForwardGroupConfigArgs
- Server
Group List<Pulumi.Tuples Ali Cloud. Alb. Inputs. Listener Default Action Forward Group Config Server Group Tuple> - The Forwarding Destination Server Group See
server_group_tuples
below.
- Server
Group []ListenerTuples Default Action Forward Group Config Server Group Tuple - The Forwarding Destination Server Group See
server_group_tuples
below.
- server
Group List<ListenerTuples Default Action Forward Group Config Server Group Tuple> - The Forwarding Destination Server Group See
server_group_tuples
below.
- server
Group ListenerTuples Default Action Forward Group Config Server Group Tuple[] - The Forwarding Destination Server Group See
server_group_tuples
below.
- server_
group_ Sequence[Listenertuples Default Action Forward Group Config Server Group Tuple] - The Forwarding Destination Server Group See
server_group_tuples
below.
- server
Group List<Property Map>Tuples - The Forwarding Destination Server Group See
server_group_tuples
below.
ListenerDefaultActionForwardGroupConfigServerGroupTuple, ListenerDefaultActionForwardGroupConfigServerGroupTupleArgs
- Server
Group stringId - Forwarded to the Destination Server Group ID
- Server
Group stringId - Forwarded to the Destination Server Group ID
- server
Group StringId - Forwarded to the Destination Server Group ID
- server
Group stringId - Forwarded to the Destination Server Group ID
- server_
group_ strid - Forwarded to the Destination Server Group ID
- server
Group StringId - Forwarded to the Destination Server Group ID
ListenerQuicConfig, ListenerQuicConfigArgs
- Quic
Listener stringId - There Is a Need to Correlate the QuIC Listener ID. The Https Listener, in Effect at the Time. quicupgradeenabled True When Required.
- Quic
Upgrade boolEnabled - Indicates Whether to Enable the QuIC Upgrade
- Quic
Listener stringId - There Is a Need to Correlate the QuIC Listener ID. The Https Listener, in Effect at the Time. quicupgradeenabled True When Required.
- Quic
Upgrade boolEnabled - Indicates Whether to Enable the QuIC Upgrade
- quic
Listener StringId - There Is a Need to Correlate the QuIC Listener ID. The Https Listener, in Effect at the Time. quicupgradeenabled True When Required.
- quic
Upgrade BooleanEnabled - Indicates Whether to Enable the QuIC Upgrade
- quic
Listener stringId - There Is a Need to Correlate the QuIC Listener ID. The Https Listener, in Effect at the Time. quicupgradeenabled True When Required.
- quic
Upgrade booleanEnabled - Indicates Whether to Enable the QuIC Upgrade
- quic_
listener_ strid - There Is a Need to Correlate the QuIC Listener ID. The Https Listener, in Effect at the Time. quicupgradeenabled True When Required.
- quic_
upgrade_ boolenabled - Indicates Whether to Enable the QuIC Upgrade
- quic
Listener StringId - There Is a Need to Correlate the QuIC Listener ID. The Https Listener, in Effect at the Time. quicupgradeenabled True When Required.
- quic
Upgrade BooleanEnabled - Indicates Whether to Enable the QuIC Upgrade
ListenerXForwardedForConfig, ListenerXForwardedForConfigArgs
- XForwarded
For stringClient Cert Client Verify Alias - The Custom Header Field Names Only When xforwardedforclientcertclientverifyenabled Has a Value of True, this Value Will Not Take Effect until.
- XForwarded
For boolClient Cert Client Verify Enabled - Indicates Whether the X-Forwarded-Clientcert-clientverify Header Field Is Used to Obtain Access to the Server Load Balancer Instance of the Client Certificate to Verify the Results.
- XForwarded
For stringClient Cert Finger Print Alias - The Custom Header Field Names Only When xforwardedforclientcertfingerprintenabled, Which Evaluates to True When the Entry into Force of.
- XForwarded
For boolClient Cert Finger Print Enabled - Indicates Whether the X-Forwarded-Clientcert-fingerprint Header Field Is Used to Obtain Access to the Server Load Balancer Instance of the Client Certificate Fingerprint Value.
- XForwarded
For stringClient Cert Issuer Dn Alias - The Custom Header Field Names Only When xforwardedforclientcertsubjectdnenabled, Which Evaluates to True When the Entry into Force of.
- XForwarded
For boolClient Cert Issuer Dn Enabled - Indicates Whether the X-Forwarded-Clientcert-issuerdn Header Field Is Used to Obtain Access to the Server Load Balancer Instance of the Client Certificate after the Manifests Are Signed, the Publisher Information.
- XForwarded
For stringClient Cert Subject Dn Alias - The Custom Header Field Name,
- XForwarded
For boolClient Cert Subject Dn Enabled - Indicates Whether the X-Forwarded-Clientcert-subjectdn Header Field Is Used to Obtain Access to the Server Load Balancer Instance of the Client Certificate Owner Information.
- XForwarded
For boolClient Source Ips Enabled Whether to use the X-Forwarded-Client-Ip header to obtain the source IP address of the server load balancer instance. Value:
true: Yes.
false (default): No.
Note HTTP, HTTPS, and QUIC listeners support this parameter. The function corresponding to this parameter is not open by default. Please contact the account manager if you need to use it.
- XForwarded
For stringClient Source Ips Trusted Specify the trusted proxy IP.
Application-oriented load balancing ALB will traverse the X-Forwarded-For from back to front, and select the first IP that is not in the trusted IP list as the real client IP, which will be used for the source IP speed limit.
- XForwarded
For boolClient Src Port Enabled - Indicates Whether the X-Forwarded-Client-Port Header Field Is Used to Obtain Access to Server Load Balancer Instances to the Client, and Those of the Ports.
- XForwarded
For boolEnabled - Whether to Enable by X-Forwarded-For Header Field Is Used to Obtain the Client IP Addresses.
- XForwarded
For boolHost Enabled Whether to enable the X-Forwarded-Host header field to obtain the domain name of the client accessing the Application Load Balancer. Value:
true: Yes.
false (default): No.
HTTP, HTTPS, and QUIC listeners support this parameter.
- XForwarded
For stringProcessing Mode Schema for processing X-Forwarded-For header fields. This value takes effect only when XForwardedForEnabled is true. Value:
append (default): append.
remove: Delete.
Configure append to add the last hop IP address to the X-Forwarded-For header field before sending the request to the backend service.
Configure remove to delete the X-Forwarded-For header before the request is sent to the backend service, regardless of whether the request carries X-Forwarded-For header fields.
HTTP and HTTPS listeners support this parameter.
- XForwarded
For boolProto Enabled - Indicates Whether the X-Forwarded-Proto Header Field Is Used to Obtain the Server Load Balancer Instance Snooping Protocols.
- XForwarded
For boolSlb Id Enabled - Indicates Whether the SLB-ID Header Field Is Used to Obtain the Load Balancing Instance Id
- XForwarded
For boolSlb Port Enabled - Indicates Whether the X-Forwarded-Port Header Field Is Used to Obtain the Server Load Balancer Instance Listening Port
- XForwarded
For stringClient Cert Client Verify Alias - The Custom Header Field Names Only When xforwardedforclientcertclientverifyenabled Has a Value of True, this Value Will Not Take Effect until.
- XForwarded
For boolClient Cert Client Verify Enabled - Indicates Whether the X-Forwarded-Clientcert-clientverify Header Field Is Used to Obtain Access to the Server Load Balancer Instance of the Client Certificate to Verify the Results.
- XForwarded
For stringClient Cert Finger Print Alias - The Custom Header Field Names Only When xforwardedforclientcertfingerprintenabled, Which Evaluates to True When the Entry into Force of.
- XForwarded
For boolClient Cert Finger Print Enabled - Indicates Whether the X-Forwarded-Clientcert-fingerprint Header Field Is Used to Obtain Access to the Server Load Balancer Instance of the Client Certificate Fingerprint Value.
- XForwarded
For stringClient Cert Issuer Dn Alias - The Custom Header Field Names Only When xforwardedforclientcertsubjectdnenabled, Which Evaluates to True When the Entry into Force of.
- XForwarded
For boolClient Cert Issuer Dn Enabled - Indicates Whether the X-Forwarded-Clientcert-issuerdn Header Field Is Used to Obtain Access to the Server Load Balancer Instance of the Client Certificate after the Manifests Are Signed, the Publisher Information.
- XForwarded
For stringClient Cert Subject Dn Alias - The Custom Header Field Name,
- XForwarded
For boolClient Cert Subject Dn Enabled - Indicates Whether the X-Forwarded-Clientcert-subjectdn Header Field Is Used to Obtain Access to the Server Load Balancer Instance of the Client Certificate Owner Information.
- XForwarded
For boolClient Source Ips Enabled Whether to use the X-Forwarded-Client-Ip header to obtain the source IP address of the server load balancer instance. Value:
true: Yes.
false (default): No.
Note HTTP, HTTPS, and QUIC listeners support this parameter. The function corresponding to this parameter is not open by default. Please contact the account manager if you need to use it.
- XForwarded
For stringClient Source Ips Trusted Specify the trusted proxy IP.
Application-oriented load balancing ALB will traverse the X-Forwarded-For from back to front, and select the first IP that is not in the trusted IP list as the real client IP, which will be used for the source IP speed limit.
- XForwarded
For boolClient Src Port Enabled - Indicates Whether the X-Forwarded-Client-Port Header Field Is Used to Obtain Access to Server Load Balancer Instances to the Client, and Those of the Ports.
- XForwarded
For boolEnabled - Whether to Enable by X-Forwarded-For Header Field Is Used to Obtain the Client IP Addresses.
- XForwarded
For boolHost Enabled Whether to enable the X-Forwarded-Host header field to obtain the domain name of the client accessing the Application Load Balancer. Value:
true: Yes.
false (default): No.
HTTP, HTTPS, and QUIC listeners support this parameter.
- XForwarded
For stringProcessing Mode Schema for processing X-Forwarded-For header fields. This value takes effect only when XForwardedForEnabled is true. Value:
append (default): append.
remove: Delete.
Configure append to add the last hop IP address to the X-Forwarded-For header field before sending the request to the backend service.
Configure remove to delete the X-Forwarded-For header before the request is sent to the backend service, regardless of whether the request carries X-Forwarded-For header fields.
HTTP and HTTPS listeners support this parameter.
- XForwarded
For boolProto Enabled - Indicates Whether the X-Forwarded-Proto Header Field Is Used to Obtain the Server Load Balancer Instance Snooping Protocols.
- XForwarded
For boolSlb Id Enabled - Indicates Whether the SLB-ID Header Field Is Used to Obtain the Load Balancing Instance Id
- XForwarded
For boolSlb Port Enabled - Indicates Whether the X-Forwarded-Port Header Field Is Used to Obtain the Server Load Balancer Instance Listening Port
- x
Forwarded StringFor Client Cert Client Verify Alias - The Custom Header Field Names Only When xforwardedforclientcertclientverifyenabled Has a Value of True, this Value Will Not Take Effect until.
- x
Forwarded BooleanFor Client Cert Client Verify Enabled - Indicates Whether the X-Forwarded-Clientcert-clientverify Header Field Is Used to Obtain Access to the Server Load Balancer Instance of the Client Certificate to Verify the Results.
- x
Forwarded StringFor Client Cert Finger Print Alias - The Custom Header Field Names Only When xforwardedforclientcertfingerprintenabled, Which Evaluates to True When the Entry into Force of.
- x
Forwarded BooleanFor Client Cert Finger Print Enabled - Indicates Whether the X-Forwarded-Clientcert-fingerprint Header Field Is Used to Obtain Access to the Server Load Balancer Instance of the Client Certificate Fingerprint Value.
- x
Forwarded StringFor Client Cert Issuer Dn Alias - The Custom Header Field Names Only When xforwardedforclientcertsubjectdnenabled, Which Evaluates to True When the Entry into Force of.
- x
Forwarded BooleanFor Client Cert Issuer Dn Enabled - Indicates Whether the X-Forwarded-Clientcert-issuerdn Header Field Is Used to Obtain Access to the Server Load Balancer Instance of the Client Certificate after the Manifests Are Signed, the Publisher Information.
- x
Forwarded StringFor Client Cert Subject Dn Alias - The Custom Header Field Name,
- x
Forwarded BooleanFor Client Cert Subject Dn Enabled - Indicates Whether the X-Forwarded-Clientcert-subjectdn Header Field Is Used to Obtain Access to the Server Load Balancer Instance of the Client Certificate Owner Information.
- x
Forwarded BooleanFor Client Source Ips Enabled Whether to use the X-Forwarded-Client-Ip header to obtain the source IP address of the server load balancer instance. Value:
true: Yes.
false (default): No.
Note HTTP, HTTPS, and QUIC listeners support this parameter. The function corresponding to this parameter is not open by default. Please contact the account manager if you need to use it.
- x
Forwarded StringFor Client Source Ips Trusted Specify the trusted proxy IP.
Application-oriented load balancing ALB will traverse the X-Forwarded-For from back to front, and select the first IP that is not in the trusted IP list as the real client IP, which will be used for the source IP speed limit.
- x
Forwarded BooleanFor Client Src Port Enabled - Indicates Whether the X-Forwarded-Client-Port Header Field Is Used to Obtain Access to Server Load Balancer Instances to the Client, and Those of the Ports.
- x
Forwarded BooleanFor Enabled - Whether to Enable by X-Forwarded-For Header Field Is Used to Obtain the Client IP Addresses.
- x
Forwarded BooleanFor Host Enabled Whether to enable the X-Forwarded-Host header field to obtain the domain name of the client accessing the Application Load Balancer. Value:
true: Yes.
false (default): No.
HTTP, HTTPS, and QUIC listeners support this parameter.
- x
Forwarded StringFor Processing Mode Schema for processing X-Forwarded-For header fields. This value takes effect only when XForwardedForEnabled is true. Value:
append (default): append.
remove: Delete.
Configure append to add the last hop IP address to the X-Forwarded-For header field before sending the request to the backend service.
Configure remove to delete the X-Forwarded-For header before the request is sent to the backend service, regardless of whether the request carries X-Forwarded-For header fields.
HTTP and HTTPS listeners support this parameter.
- x
Forwarded BooleanFor Proto Enabled - Indicates Whether the X-Forwarded-Proto Header Field Is Used to Obtain the Server Load Balancer Instance Snooping Protocols.
- x
Forwarded BooleanFor Slb Id Enabled - Indicates Whether the SLB-ID Header Field Is Used to Obtain the Load Balancing Instance Id
- x
Forwarded BooleanFor Slb Port Enabled - Indicates Whether the X-Forwarded-Port Header Field Is Used to Obtain the Server Load Balancer Instance Listening Port
- x
Forwarded stringFor Client Cert Client Verify Alias - The Custom Header Field Names Only When xforwardedforclientcertclientverifyenabled Has a Value of True, this Value Will Not Take Effect until.
- x
Forwarded booleanFor Client Cert Client Verify Enabled - Indicates Whether the X-Forwarded-Clientcert-clientverify Header Field Is Used to Obtain Access to the Server Load Balancer Instance of the Client Certificate to Verify the Results.
- x
Forwarded stringFor Client Cert Finger Print Alias - The Custom Header Field Names Only When xforwardedforclientcertfingerprintenabled, Which Evaluates to True When the Entry into Force of.
- x
Forwarded booleanFor Client Cert Finger Print Enabled - Indicates Whether the X-Forwarded-Clientcert-fingerprint Header Field Is Used to Obtain Access to the Server Load Balancer Instance of the Client Certificate Fingerprint Value.
- x
Forwarded stringFor Client Cert Issuer Dn Alias - The Custom Header Field Names Only When xforwardedforclientcertsubjectdnenabled, Which Evaluates to True When the Entry into Force of.
- x
Forwarded booleanFor Client Cert Issuer Dn Enabled - Indicates Whether the X-Forwarded-Clientcert-issuerdn Header Field Is Used to Obtain Access to the Server Load Balancer Instance of the Client Certificate after the Manifests Are Signed, the Publisher Information.
- x
Forwarded stringFor Client Cert Subject Dn Alias - The Custom Header Field Name,
- x
Forwarded booleanFor Client Cert Subject Dn Enabled - Indicates Whether the X-Forwarded-Clientcert-subjectdn Header Field Is Used to Obtain Access to the Server Load Balancer Instance of the Client Certificate Owner Information.
- x
Forwarded booleanFor Client Source Ips Enabled Whether to use the X-Forwarded-Client-Ip header to obtain the source IP address of the server load balancer instance. Value:
true: Yes.
false (default): No.
Note HTTP, HTTPS, and QUIC listeners support this parameter. The function corresponding to this parameter is not open by default. Please contact the account manager if you need to use it.
- x
Forwarded stringFor Client Source Ips Trusted Specify the trusted proxy IP.
Application-oriented load balancing ALB will traverse the X-Forwarded-For from back to front, and select the first IP that is not in the trusted IP list as the real client IP, which will be used for the source IP speed limit.
- x
Forwarded booleanFor Client Src Port Enabled - Indicates Whether the X-Forwarded-Client-Port Header Field Is Used to Obtain Access to Server Load Balancer Instances to the Client, and Those of the Ports.
- x
Forwarded booleanFor Enabled - Whether to Enable by X-Forwarded-For Header Field Is Used to Obtain the Client IP Addresses.
- x
Forwarded booleanFor Host Enabled Whether to enable the X-Forwarded-Host header field to obtain the domain name of the client accessing the Application Load Balancer. Value:
true: Yes.
false (default): No.
HTTP, HTTPS, and QUIC listeners support this parameter.
- x
Forwarded stringFor Processing Mode Schema for processing X-Forwarded-For header fields. This value takes effect only when XForwardedForEnabled is true. Value:
append (default): append.
remove: Delete.
Configure append to add the last hop IP address to the X-Forwarded-For header field before sending the request to the backend service.
Configure remove to delete the X-Forwarded-For header before the request is sent to the backend service, regardless of whether the request carries X-Forwarded-For header fields.
HTTP and HTTPS listeners support this parameter.
- x
Forwarded booleanFor Proto Enabled - Indicates Whether the X-Forwarded-Proto Header Field Is Used to Obtain the Server Load Balancer Instance Snooping Protocols.
- x
Forwarded booleanFor Slb Id Enabled - Indicates Whether the SLB-ID Header Field Is Used to Obtain the Load Balancing Instance Id
- x
Forwarded booleanFor Slb Port Enabled - Indicates Whether the X-Forwarded-Port Header Field Is Used to Obtain the Server Load Balancer Instance Listening Port
- x_
forwarded_ strfor_ client_ cert_ client_ verify_ alias - The Custom Header Field Names Only When xforwardedforclientcertclientverifyenabled Has a Value of True, this Value Will Not Take Effect until.
- x_
forwarded_ boolfor_ client_ cert_ client_ verify_ enabled - Indicates Whether the X-Forwarded-Clientcert-clientverify Header Field Is Used to Obtain Access to the Server Load Balancer Instance of the Client Certificate to Verify the Results.
- x_
forwarded_ strfor_ client_ cert_ finger_ print_ alias - The Custom Header Field Names Only When xforwardedforclientcertfingerprintenabled, Which Evaluates to True When the Entry into Force of.
- x_
forwarded_ boolfor_ client_ cert_ finger_ print_ enabled - Indicates Whether the X-Forwarded-Clientcert-fingerprint Header Field Is Used to Obtain Access to the Server Load Balancer Instance of the Client Certificate Fingerprint Value.
- x_
forwarded_ strfor_ client_ cert_ issuer_ dn_ alias - The Custom Header Field Names Only When xforwardedforclientcertsubjectdnenabled, Which Evaluates to True When the Entry into Force of.
- x_
forwarded_ boolfor_ client_ cert_ issuer_ dn_ enabled - Indicates Whether the X-Forwarded-Clientcert-issuerdn Header Field Is Used to Obtain Access to the Server Load Balancer Instance of the Client Certificate after the Manifests Are Signed, the Publisher Information.
- x_
forwarded_ strfor_ client_ cert_ subject_ dn_ alias - The Custom Header Field Name,
- x_
forwarded_ boolfor_ client_ cert_ subject_ dn_ enabled - Indicates Whether the X-Forwarded-Clientcert-subjectdn Header Field Is Used to Obtain Access to the Server Load Balancer Instance of the Client Certificate Owner Information.
- x_
forwarded_ boolfor_ client_ source_ ips_ enabled Whether to use the X-Forwarded-Client-Ip header to obtain the source IP address of the server load balancer instance. Value:
true: Yes.
false (default): No.
Note HTTP, HTTPS, and QUIC listeners support this parameter. The function corresponding to this parameter is not open by default. Please contact the account manager if you need to use it.
- x_
forwarded_ strfor_ client_ source_ ips_ trusted Specify the trusted proxy IP.
Application-oriented load balancing ALB will traverse the X-Forwarded-For from back to front, and select the first IP that is not in the trusted IP list as the real client IP, which will be used for the source IP speed limit.
- x_
forwarded_ boolfor_ client_ src_ port_ enabled - Indicates Whether the X-Forwarded-Client-Port Header Field Is Used to Obtain Access to Server Load Balancer Instances to the Client, and Those of the Ports.
- x_
forwarded_ boolfor_ enabled - Whether to Enable by X-Forwarded-For Header Field Is Used to Obtain the Client IP Addresses.
- x_
forwarded_ boolfor_ host_ enabled Whether to enable the X-Forwarded-Host header field to obtain the domain name of the client accessing the Application Load Balancer. Value:
true: Yes.
false (default): No.
HTTP, HTTPS, and QUIC listeners support this parameter.
- x_
forwarded_ strfor_ processing_ mode Schema for processing X-Forwarded-For header fields. This value takes effect only when XForwardedForEnabled is true. Value:
append (default): append.
remove: Delete.
Configure append to add the last hop IP address to the X-Forwarded-For header field before sending the request to the backend service.
Configure remove to delete the X-Forwarded-For header before the request is sent to the backend service, regardless of whether the request carries X-Forwarded-For header fields.
HTTP and HTTPS listeners support this parameter.
- x_
forwarded_ boolfor_ proto_ enabled - Indicates Whether the X-Forwarded-Proto Header Field Is Used to Obtain the Server Load Balancer Instance Snooping Protocols.
- x_
forwarded_ boolfor_ slb_ id_ enabled - Indicates Whether the SLB-ID Header Field Is Used to Obtain the Load Balancing Instance Id
- x_
forwarded_ boolfor_ slb_ port_ enabled - Indicates Whether the X-Forwarded-Port Header Field Is Used to Obtain the Server Load Balancer Instance Listening Port
- x
Forwarded StringFor Client Cert Client Verify Alias - The Custom Header Field Names Only When xforwardedforclientcertclientverifyenabled Has a Value of True, this Value Will Not Take Effect until.
- x
Forwarded BooleanFor Client Cert Client Verify Enabled - Indicates Whether the X-Forwarded-Clientcert-clientverify Header Field Is Used to Obtain Access to the Server Load Balancer Instance of the Client Certificate to Verify the Results.
- x
Forwarded StringFor Client Cert Finger Print Alias - The Custom Header Field Names Only When xforwardedforclientcertfingerprintenabled, Which Evaluates to True When the Entry into Force of.
- x
Forwarded BooleanFor Client Cert Finger Print Enabled - Indicates Whether the X-Forwarded-Clientcert-fingerprint Header Field Is Used to Obtain Access to the Server Load Balancer Instance of the Client Certificate Fingerprint Value.
- x
Forwarded StringFor Client Cert Issuer Dn Alias - The Custom Header Field Names Only When xforwardedforclientcertsubjectdnenabled, Which Evaluates to True When the Entry into Force of.
- x
Forwarded BooleanFor Client Cert Issuer Dn Enabled - Indicates Whether the X-Forwarded-Clientcert-issuerdn Header Field Is Used to Obtain Access to the Server Load Balancer Instance of the Client Certificate after the Manifests Are Signed, the Publisher Information.
- x
Forwarded StringFor Client Cert Subject Dn Alias - The Custom Header Field Name,
- x
Forwarded BooleanFor Client Cert Subject Dn Enabled - Indicates Whether the X-Forwarded-Clientcert-subjectdn Header Field Is Used to Obtain Access to the Server Load Balancer Instance of the Client Certificate Owner Information.
- x
Forwarded BooleanFor Client Source Ips Enabled Whether to use the X-Forwarded-Client-Ip header to obtain the source IP address of the server load balancer instance. Value:
true: Yes.
false (default): No.
Note HTTP, HTTPS, and QUIC listeners support this parameter. The function corresponding to this parameter is not open by default. Please contact the account manager if you need to use it.
- x
Forwarded StringFor Client Source Ips Trusted Specify the trusted proxy IP.
Application-oriented load balancing ALB will traverse the X-Forwarded-For from back to front, and select the first IP that is not in the trusted IP list as the real client IP, which will be used for the source IP speed limit.
- x
Forwarded BooleanFor Client Src Port Enabled - Indicates Whether the X-Forwarded-Client-Port Header Field Is Used to Obtain Access to Server Load Balancer Instances to the Client, and Those of the Ports.
- x
Forwarded BooleanFor Enabled - Whether to Enable by X-Forwarded-For Header Field Is Used to Obtain the Client IP Addresses.
- x
Forwarded BooleanFor Host Enabled Whether to enable the X-Forwarded-Host header field to obtain the domain name of the client accessing the Application Load Balancer. Value:
true: Yes.
false (default): No.
HTTP, HTTPS, and QUIC listeners support this parameter.
- x
Forwarded StringFor Processing Mode Schema for processing X-Forwarded-For header fields. This value takes effect only when XForwardedForEnabled is true. Value:
append (default): append.
remove: Delete.
Configure append to add the last hop IP address to the X-Forwarded-For header field before sending the request to the backend service.
Configure remove to delete the X-Forwarded-For header before the request is sent to the backend service, regardless of whether the request carries X-Forwarded-For header fields.
HTTP and HTTPS listeners support this parameter.
- x
Forwarded BooleanFor Proto Enabled - Indicates Whether the X-Forwarded-Proto Header Field Is Used to Obtain the Server Load Balancer Instance Snooping Protocols.
- x
Forwarded BooleanFor Slb Id Enabled - Indicates Whether the SLB-ID Header Field Is Used to Obtain the Load Balancing Instance Id
- x
Forwarded BooleanFor Slb Port Enabled - Indicates Whether the X-Forwarded-Port Header Field Is Used to Obtain the Server Load Balancer Instance Listening Port
Import
Application Load Balancer (ALB) Listener can be imported using the id, e.g.
$ pulumi import alicloud:alb/listener:Listener example <id>
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Alibaba Cloud pulumi/pulumi-alicloud
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
alicloud
Terraform Provider.