1. Packages
  2. Alibaba Cloud
  3. API Docs
  4. threatdetection
  5. HoneypotProbe
Alibaba Cloud v3.38.0 published on Friday, Jun 2, 2023 by Pulumi

alicloud.threatdetection.HoneypotProbe

Explore with Pulumi AI

alicloud logo
Alibaba Cloud v3.38.0 published on Friday, Jun 2, 2023 by Pulumi

    Provides a Threat Detection Honeypot Probe resource.

    For information about Threat Detection Honeypot Probe and how to use it, see What is Honeypot Probe.

    NOTE: Available in v1.195.0+.

    Example Usage

    Basic Usage

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AliCloud = Pulumi.AliCloud;
    
    return await Deployment.RunAsync(() => 
    {
        var @default = new AliCloud.ThreatDetection.HoneypotProbe("default", new()
        {
            Arp = true,
            ControlNodeId = "a44e1ab3-6945-444c-889d-5bacee7056e8",
            DisplayName = "apispec",
            HoneypotBindLists = new[]
            {
                new AliCloud.ThreatDetection.Inputs.HoneypotProbeHoneypotBindListArgs
                {
                    BindPortLists = new[]
                    {
                        new AliCloud.ThreatDetection.Inputs.HoneypotProbeHoneypotBindListBindPortListArgs
                        {
                            EndPort = 80,
                            StartPort = 80,
                        },
                    },
                    HoneypotId = "ede59ccdb1b7a2e21735d4593a6eb5ed31883af320c5ab63ab33818e94307be9",
                },
            },
            Ping = true,
            ProbeType = "host_probe",
            Uuid = "032b618f-b220-4a0d-bd37-fbdc6ef58b6a",
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/threatdetection"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := threatdetection.NewHoneypotProbe(ctx, "default", &threatdetection.HoneypotProbeArgs{
    			Arp:           pulumi.Bool(true),
    			ControlNodeId: pulumi.String("a44e1ab3-6945-444c-889d-5bacee7056e8"),
    			DisplayName:   pulumi.String("apispec"),
    			HoneypotBindLists: threatdetection.HoneypotProbeHoneypotBindListArray{
    				&threatdetection.HoneypotProbeHoneypotBindListArgs{
    					BindPortLists: threatdetection.HoneypotProbeHoneypotBindListBindPortListArray{
    						&threatdetection.HoneypotProbeHoneypotBindListBindPortListArgs{
    							EndPort:   pulumi.Int(80),
    							StartPort: pulumi.Int(80),
    						},
    					},
    					HoneypotId: pulumi.String("ede59ccdb1b7a2e21735d4593a6eb5ed31883af320c5ab63ab33818e94307be9"),
    				},
    			},
    			Ping:      pulumi.Bool(true),
    			ProbeType: pulumi.String("host_probe"),
    			Uuid:      pulumi.String("032b618f-b220-4a0d-bd37-fbdc6ef58b6a"),
    		})
    		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.alicloud.threatdetection.HoneypotProbe;
    import com.pulumi.alicloud.threatdetection.HoneypotProbeArgs;
    import com.pulumi.alicloud.threatdetection.inputs.HoneypotProbeHoneypotBindListArgs;
    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 default_ = new HoneypotProbe("default", HoneypotProbeArgs.builder()        
                .arp(true)
                .controlNodeId("a44e1ab3-6945-444c-889d-5bacee7056e8")
                .displayName("apispec")
                .honeypotBindLists(HoneypotProbeHoneypotBindListArgs.builder()
                    .bindPortLists(HoneypotProbeHoneypotBindListBindPortListArgs.builder()
                        .endPort(80)
                        .startPort(80)
                        .build())
                    .honeypotId("ede59ccdb1b7a2e21735d4593a6eb5ed31883af320c5ab63ab33818e94307be9")
                    .build())
                .ping(true)
                .probeType("host_probe")
                .uuid("032b618f-b220-4a0d-bd37-fbdc6ef58b6a")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_alicloud as alicloud
    
    default = alicloud.threatdetection.HoneypotProbe("default",
        arp=True,
        control_node_id="a44e1ab3-6945-444c-889d-5bacee7056e8",
        display_name="apispec",
        honeypot_bind_lists=[alicloud.threatdetection.HoneypotProbeHoneypotBindListArgs(
            bind_port_lists=[alicloud.threatdetection.HoneypotProbeHoneypotBindListBindPortListArgs(
                end_port=80,
                start_port=80,
            )],
            honeypot_id="ede59ccdb1b7a2e21735d4593a6eb5ed31883af320c5ab63ab33818e94307be9",
        )],
        ping=True,
        probe_type="host_probe",
        uuid="032b618f-b220-4a0d-bd37-fbdc6ef58b6a")
    
    import * as pulumi from "@pulumi/pulumi";
    import * as alicloud from "@pulumi/alicloud";
    
    const _default = new alicloud.threatdetection.HoneypotProbe("default", {
        arp: true,
        controlNodeId: "a44e1ab3-6945-444c-889d-5bacee7056e8",
        displayName: "apispec",
        honeypotBindLists: [{
            bindPortLists: [{
                endPort: 80,
                startPort: 80,
            }],
            honeypotId: "ede59ccdb1b7a2e21735d4593a6eb5ed31883af320c5ab63ab33818e94307be9",
        }],
        ping: true,
        probeType: "host_probe",
        uuid: "032b618f-b220-4a0d-bd37-fbdc6ef58b6a",
    });
    
    resources:
      default:
        type: alicloud:threatdetection:HoneypotProbe
        properties:
          arp: true
          controlNodeId: a44e1ab3-6945-444c-889d-5bacee7056e8
          displayName: apispec
          honeypotBindLists:
            - bindPortLists:
                - endPort: 80
                  startPort: 80
              honeypotId: ede59ccdb1b7a2e21735d4593a6eb5ed31883af320c5ab63ab33818e94307be9
          ping: true
          probeType: host_probe
          uuid: 032b618f-b220-4a0d-bd37-fbdc6ef58b6a
    

    Create HoneypotProbe Resource

    new HoneypotProbe(name: string, args: HoneypotProbeArgs, opts?: CustomResourceOptions);
    @overload
    def HoneypotProbe(resource_name: str,
                      opts: Optional[ResourceOptions] = None,
                      arp: Optional[bool] = None,
                      control_node_id: Optional[str] = None,
                      display_name: Optional[str] = None,
                      honeypot_bind_lists: Optional[Sequence[HoneypotProbeHoneypotBindListArgs]] = None,
                      ping: Optional[bool] = None,
                      probe_type: Optional[str] = None,
                      probe_version: Optional[str] = None,
                      proxy_ip: Optional[str] = None,
                      service_ip_lists: Optional[Sequence[str]] = None,
                      uuid: Optional[str] = None,
                      vpc_id: Optional[str] = None)
    @overload
    def HoneypotProbe(resource_name: str,
                      args: HoneypotProbeArgs,
                      opts: Optional[ResourceOptions] = None)
    func NewHoneypotProbe(ctx *Context, name string, args HoneypotProbeArgs, opts ...ResourceOption) (*HoneypotProbe, error)
    public HoneypotProbe(string name, HoneypotProbeArgs args, CustomResourceOptions? opts = null)
    public HoneypotProbe(String name, HoneypotProbeArgs args)
    public HoneypotProbe(String name, HoneypotProbeArgs args, CustomResourceOptions options)
    
    type: alicloud:threatdetection:HoneypotProbe
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    name string
    The unique name of the resource.
    args HoneypotProbeArgs
    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 HoneypotProbeArgs
    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 HoneypotProbeArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args HoneypotProbeArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args HoneypotProbeArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    HoneypotProbe 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 HoneypotProbe resource accepts the following input properties:

    ControlNodeId string

    The ID of the management node.

    DisplayName string

    Probe display name.

    ProbeType string

    Probe type, support host_probe and vpc_black_hole_probe.

    Arp bool

    ARP spoofing detection.true: Enable false: Disabled

    HoneypotBindLists List<Pulumi.AliCloud.ThreatDetection.Inputs.HoneypotProbeHoneypotBindListArgs>

    Configure the service.See the following Block HoneypotBindList.

    Ping bool

    Ping scan detection. Value: true: Enable false: Disabled

    ProbeVersion string

    The version of the probe.

    ProxyIp string

    The IP address of the proxy.

    ServiceIpLists List<string>

    Listen to the IP address list.

    Uuid string

    Machine uuid, probe_type is host_probe. This value cannot be empty.

    VpcId string

    The ID of the VPC. probe_type is vpc_black_hole_probe. This value cannot be empty.

    ControlNodeId string

    The ID of the management node.

    DisplayName string

    Probe display name.

    ProbeType string

    Probe type, support host_probe and vpc_black_hole_probe.

    Arp bool

    ARP spoofing detection.true: Enable false: Disabled

    HoneypotBindLists []HoneypotProbeHoneypotBindListArgs

    Configure the service.See the following Block HoneypotBindList.

    Ping bool

    Ping scan detection. Value: true: Enable false: Disabled

    ProbeVersion string

    The version of the probe.

    ProxyIp string

    The IP address of the proxy.

    ServiceIpLists []string

    Listen to the IP address list.

    Uuid string

    Machine uuid, probe_type is host_probe. This value cannot be empty.

    VpcId string

    The ID of the VPC. probe_type is vpc_black_hole_probe. This value cannot be empty.

    controlNodeId String

    The ID of the management node.

    displayName String

    Probe display name.

    probeType String

    Probe type, support host_probe and vpc_black_hole_probe.

    arp Boolean

    ARP spoofing detection.true: Enable false: Disabled

    honeypotBindLists List<HoneypotProbeHoneypotBindListArgs>

    Configure the service.See the following Block HoneypotBindList.

    ping Boolean

    Ping scan detection. Value: true: Enable false: Disabled

    probeVersion String

    The version of the probe.

    proxyIp String

    The IP address of the proxy.

    serviceIpLists List<String>

    Listen to the IP address list.

    uuid String

    Machine uuid, probe_type is host_probe. This value cannot be empty.

    vpcId String

    The ID of the VPC. probe_type is vpc_black_hole_probe. This value cannot be empty.

    controlNodeId string

    The ID of the management node.

    displayName string

    Probe display name.

    probeType string

    Probe type, support host_probe and vpc_black_hole_probe.

    arp boolean

    ARP spoofing detection.true: Enable false: Disabled

    honeypotBindLists HoneypotProbeHoneypotBindListArgs[]

    Configure the service.See the following Block HoneypotBindList.

    ping boolean

    Ping scan detection. Value: true: Enable false: Disabled

    probeVersion string

    The version of the probe.

    proxyIp string

    The IP address of the proxy.

    serviceIpLists string[]

    Listen to the IP address list.

    uuid string

    Machine uuid, probe_type is host_probe. This value cannot be empty.

    vpcId string

    The ID of the VPC. probe_type is vpc_black_hole_probe. This value cannot be empty.

    control_node_id str

    The ID of the management node.

    display_name str

    Probe display name.

    probe_type str

    Probe type, support host_probe and vpc_black_hole_probe.

    arp bool

    ARP spoofing detection.true: Enable false: Disabled

    honeypot_bind_lists Sequence[HoneypotProbeHoneypotBindListArgs]

    Configure the service.See the following Block HoneypotBindList.

    ping bool

    Ping scan detection. Value: true: Enable false: Disabled

    probe_version str

    The version of the probe.

    proxy_ip str

    The IP address of the proxy.

    service_ip_lists Sequence[str]

    Listen to the IP address list.

    uuid str

    Machine uuid, probe_type is host_probe. This value cannot be empty.

    vpc_id str

    The ID of the VPC. probe_type is vpc_black_hole_probe. This value cannot be empty.

    controlNodeId String

    The ID of the management node.

    displayName String

    Probe display name.

    probeType String

    Probe type, support host_probe and vpc_black_hole_probe.

    arp Boolean

    ARP spoofing detection.true: Enable false: Disabled

    honeypotBindLists List<Property Map>

    Configure the service.See the following Block HoneypotBindList.

    ping Boolean

    Ping scan detection. Value: true: Enable false: Disabled

    probeVersion String

    The version of the probe.

    proxyIp String

    The IP address of the proxy.

    serviceIpLists List<String>

    Listen to the IP address list.

    uuid String

    Machine uuid, probe_type is host_probe. This value cannot be empty.

    vpcId String

    The ID of the VPC. probe_type is vpc_black_hole_probe. This value cannot be empty.

    Outputs

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

    HoneypotProbeId string

    The first ID of the resource

    Id string

    The provider-assigned unique ID for this managed resource.

    Status string

    The status of the resource

    HoneypotProbeId string

    The first ID of the resource

    Id string

    The provider-assigned unique ID for this managed resource.

    Status string

    The status of the resource

    honeypotProbeId String

    The first ID of the resource

    id String

    The provider-assigned unique ID for this managed resource.

    status String

    The status of the resource

    honeypotProbeId string

    The first ID of the resource

    id string

    The provider-assigned unique ID for this managed resource.

    status string

    The status of the resource

    honeypot_probe_id str

    The first ID of the resource

    id str

    The provider-assigned unique ID for this managed resource.

    status str

    The status of the resource

    honeypotProbeId String

    The first ID of the resource

    id String

    The provider-assigned unique ID for this managed resource.

    status String

    The status of the resource

    Look up Existing HoneypotProbe Resource

    Get an existing HoneypotProbe 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?: HoneypotProbeState, opts?: CustomResourceOptions): HoneypotProbe
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            arp: Optional[bool] = None,
            control_node_id: Optional[str] = None,
            display_name: Optional[str] = None,
            honeypot_bind_lists: Optional[Sequence[HoneypotProbeHoneypotBindListArgs]] = None,
            honeypot_probe_id: Optional[str] = None,
            ping: Optional[bool] = None,
            probe_type: Optional[str] = None,
            probe_version: Optional[str] = None,
            proxy_ip: Optional[str] = None,
            service_ip_lists: Optional[Sequence[str]] = None,
            status: Optional[str] = None,
            uuid: Optional[str] = None,
            vpc_id: Optional[str] = None) -> HoneypotProbe
    func GetHoneypotProbe(ctx *Context, name string, id IDInput, state *HoneypotProbeState, opts ...ResourceOption) (*HoneypotProbe, error)
    public static HoneypotProbe Get(string name, Input<string> id, HoneypotProbeState? state, CustomResourceOptions? opts = null)
    public static HoneypotProbe get(String name, Output<String> id, HoneypotProbeState 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.
    The following state arguments are supported:
    Arp bool

    ARP spoofing detection.true: Enable false: Disabled

    ControlNodeId string

    The ID of the management node.

    DisplayName string

    Probe display name.

    HoneypotBindLists List<Pulumi.AliCloud.ThreatDetection.Inputs.HoneypotProbeHoneypotBindListArgs>

    Configure the service.See the following Block HoneypotBindList.

    HoneypotProbeId string

    The first ID of the resource

    Ping bool

    Ping scan detection. Value: true: Enable false: Disabled

    ProbeType string

    Probe type, support host_probe and vpc_black_hole_probe.

    ProbeVersion string

    The version of the probe.

    ProxyIp string

    The IP address of the proxy.

    ServiceIpLists List<string>

    Listen to the IP address list.

    Status string

    The status of the resource

    Uuid string

    Machine uuid, probe_type is host_probe. This value cannot be empty.

    VpcId string

    The ID of the VPC. probe_type is vpc_black_hole_probe. This value cannot be empty.

    Arp bool

    ARP spoofing detection.true: Enable false: Disabled

    ControlNodeId string

    The ID of the management node.

    DisplayName string

    Probe display name.

    HoneypotBindLists []HoneypotProbeHoneypotBindListArgs

    Configure the service.See the following Block HoneypotBindList.

    HoneypotProbeId string

    The first ID of the resource

    Ping bool

    Ping scan detection. Value: true: Enable false: Disabled

    ProbeType string

    Probe type, support host_probe and vpc_black_hole_probe.

    ProbeVersion string

    The version of the probe.

    ProxyIp string

    The IP address of the proxy.

    ServiceIpLists []string

    Listen to the IP address list.

    Status string

    The status of the resource

    Uuid string

    Machine uuid, probe_type is host_probe. This value cannot be empty.

    VpcId string

    The ID of the VPC. probe_type is vpc_black_hole_probe. This value cannot be empty.

    arp Boolean

    ARP spoofing detection.true: Enable false: Disabled

    controlNodeId String

    The ID of the management node.

    displayName String

    Probe display name.

    honeypotBindLists List<HoneypotProbeHoneypotBindListArgs>

    Configure the service.See the following Block HoneypotBindList.

    honeypotProbeId String

    The first ID of the resource

    ping Boolean

    Ping scan detection. Value: true: Enable false: Disabled

    probeType String

    Probe type, support host_probe and vpc_black_hole_probe.

    probeVersion String

    The version of the probe.

    proxyIp String

    The IP address of the proxy.

    serviceIpLists List<String>

    Listen to the IP address list.

    status String

    The status of the resource

    uuid String

    Machine uuid, probe_type is host_probe. This value cannot be empty.

    vpcId String

    The ID of the VPC. probe_type is vpc_black_hole_probe. This value cannot be empty.

    arp boolean

    ARP spoofing detection.true: Enable false: Disabled

    controlNodeId string

    The ID of the management node.

    displayName string

    Probe display name.

    honeypotBindLists HoneypotProbeHoneypotBindListArgs[]

    Configure the service.See the following Block HoneypotBindList.

    honeypotProbeId string

    The first ID of the resource

    ping boolean

    Ping scan detection. Value: true: Enable false: Disabled

    probeType string

    Probe type, support host_probe and vpc_black_hole_probe.

    probeVersion string

    The version of the probe.

    proxyIp string

    The IP address of the proxy.

    serviceIpLists string[]

    Listen to the IP address list.

    status string

    The status of the resource

    uuid string

    Machine uuid, probe_type is host_probe. This value cannot be empty.

    vpcId string

    The ID of the VPC. probe_type is vpc_black_hole_probe. This value cannot be empty.

    arp bool

    ARP spoofing detection.true: Enable false: Disabled

    control_node_id str

    The ID of the management node.

    display_name str

    Probe display name.

    honeypot_bind_lists Sequence[HoneypotProbeHoneypotBindListArgs]

    Configure the service.See the following Block HoneypotBindList.

    honeypot_probe_id str

    The first ID of the resource

    ping bool

    Ping scan detection. Value: true: Enable false: Disabled

    probe_type str

    Probe type, support host_probe and vpc_black_hole_probe.

    probe_version str

    The version of the probe.

    proxy_ip str

    The IP address of the proxy.

    service_ip_lists Sequence[str]

    Listen to the IP address list.

    status str

    The status of the resource

    uuid str

    Machine uuid, probe_type is host_probe. This value cannot be empty.

    vpc_id str

    The ID of the VPC. probe_type is vpc_black_hole_probe. This value cannot be empty.

    arp Boolean

    ARP spoofing detection.true: Enable false: Disabled

    controlNodeId String

    The ID of the management node.

    displayName String

    Probe display name.

    honeypotBindLists List<Property Map>

    Configure the service.See the following Block HoneypotBindList.

    honeypotProbeId String

    The first ID of the resource

    ping Boolean

    Ping scan detection. Value: true: Enable false: Disabled

    probeType String

    Probe type, support host_probe and vpc_black_hole_probe.

    probeVersion String

    The version of the probe.

    proxyIp String

    The IP address of the proxy.

    serviceIpLists List<String>

    Listen to the IP address list.

    status String

    The status of the resource

    uuid String

    Machine uuid, probe_type is host_probe. This value cannot be empty.

    vpcId String

    The ID of the VPC. probe_type is vpc_black_hole_probe. This value cannot be empty.

    Supporting Types

    HoneypotProbeHoneypotBindList

    BindPortLists List<Pulumi.AliCloud.ThreatDetection.Inputs.HoneypotProbeHoneypotBindListBindPortList>

    List of listening ports.See the following Block BindPortList.

    HoneypotId string

    Honeypot ID.

    BindPortLists []HoneypotProbeHoneypotBindListBindPortList

    List of listening ports.See the following Block BindPortList.

    HoneypotId string

    Honeypot ID.

    bindPortLists List<HoneypotProbeHoneypotBindListBindPortList>

    List of listening ports.See the following Block BindPortList.

    honeypotId String

    Honeypot ID.

    bindPortLists HoneypotProbeHoneypotBindListBindPortList[]

    List of listening ports.See the following Block BindPortList.

    honeypotId string

    Honeypot ID.

    bind_port_lists Sequence[HoneypotProbeHoneypotBindListBindPortList]

    List of listening ports.See the following Block BindPortList.

    honeypot_id str

    Honeypot ID.

    bindPortLists List<Property Map>

    List of listening ports.See the following Block BindPortList.

    honeypotId String

    Honeypot ID.

    HoneypotProbeHoneypotBindListBindPortList

    BindPort bool

    Whether to bind the port.

    EndPort int

    End port.

    Fixed bool

    Whether the port is fixed.

    StartPort int

    Start port.

    TargetPort int

    Destination port.

    BindPort bool

    Whether to bind the port.

    EndPort int

    End port.

    Fixed bool

    Whether the port is fixed.

    StartPort int

    Start port.

    TargetPort int

    Destination port.

    bindPort Boolean

    Whether to bind the port.

    endPort Integer

    End port.

    fixed Boolean

    Whether the port is fixed.

    startPort Integer

    Start port.

    targetPort Integer

    Destination port.

    bindPort boolean

    Whether to bind the port.

    endPort number

    End port.

    fixed boolean

    Whether the port is fixed.

    startPort number

    Start port.

    targetPort number

    Destination port.

    bind_port bool

    Whether to bind the port.

    end_port int

    End port.

    fixed bool

    Whether the port is fixed.

    start_port int

    Start port.

    target_port int

    Destination port.

    bindPort Boolean

    Whether to bind the port.

    endPort Number

    End port.

    fixed Boolean

    Whether the port is fixed.

    startPort Number

    Start port.

    targetPort Number

    Destination port.

    Import

    Threat Detection Honeypot Probe can be imported using the id, e.g.

     $ pulumi import alicloud:threatdetection/honeypotProbe:HoneypotProbe example <id>
    

    Package Details

    Repository
    Alibaba Cloud pulumi/pulumi-alicloud
    License
    Apache-2.0
    Notes

    This Pulumi package is based on the alicloud Terraform Provider.

    alicloud logo
    Alibaba Cloud v3.38.0 published on Friday, Jun 2, 2023 by Pulumi