HoneypotNodeArgs

data class HoneypotNodeArgs(val allowHoneypotAccessInternet: Output<Boolean>? = null, val availableProbeNum: Output<Int>? = null, val nodeName: Output<String>? = null, val securityGroupProbeIpLists: Output<List<String>>? = null) : ConvertibleToJava<HoneypotNodeArgs>

Provides a Threat Detection Honeypot Node resource. For information about Threat Detection Honeypot Node and how to use it, see What is Honeypot Node.

NOTE: Available since v1.195.0.

Example Usage

Basic Usage

package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.alicloud.threatdetection.HoneypotNode;
import com.pulumi.alicloud.threatdetection.HoneypotNodeArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
final var config = ctx.config();
final var name = config.get("name").orElse("tf_example");
var default_ = new HoneypotNode("default", HoneypotNodeArgs.builder()
.nodeName(name)
.availableProbeNum(20)
.securityGroupProbeIpLists("0.0.0.0/0")
.build());
}
}

Import

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

$ pulumi import alicloud:threatdetection/honeypotNode:HoneypotNode example <id>

Constructors

Link copied to clipboard
fun HoneypotNodeArgs(allowHoneypotAccessInternet: Output<Boolean>? = null, availableProbeNum: Output<Int>? = null, nodeName: Output<String>? = null, securityGroupProbeIpLists: Output<List<String>>? = null)

Functions

Link copied to clipboard
open override fun toJava(): HoneypotNodeArgs

Properties

Link copied to clipboard

Whether to allow honeypot access to the external network. Value:-true: Allow-false: Disabled

Link copied to clipboard
val availableProbeNum: Output<Int>? = null

Number of probes available.

Link copied to clipboard
val nodeName: Output<String>? = null

Management node name.

Link copied to clipboard
val securityGroupProbeIpLists: Output<List<String>>? = null

Release the collection of network segments.