HoneypotNode

class HoneypotNode : KotlinCustomResource

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>

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>

Number of probes available.

Link copied to clipboard
val createTime: Output<String>

The creation time of the resource

Link copied to clipboard
val id: Output<String>
Link copied to clipboard
val nodeName: Output<String>

Management node name.

Link copied to clipboard
val pulumiChildResources: Set<KotlinResource>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard

Release the collection of network segments.

Link copied to clipboard
val status: Output<Int>

The status of the resource

Link copied to clipboard
val urn: Output<String>