HoneyPotArgs

data class HoneyPotArgs(val honeypotImageId: Output<String>? = null, val honeypotImageName: Output<String>? = null, val honeypotName: Output<String>? = null, val nodeId: Output<String>? = null) : ConvertibleToJava<HoneyPotArgs>

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

NOTE: Available in 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.HoneyPot;
import com.pulumi.alicloud.threatdetection.HoneyPotArgs;
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 HoneyPot("default", HoneyPotArgs.builder()
.honeypotImageId("sha256:007095d6de9c7a343e9fc1f74a7efc9c5de9d5454789d2fa505a1b3fc623730c")
.honeypotImageName("ruoyi")
.honeypotName("huangtiong-test")
.nodeId("a44e1ab3-6945-444c-889d-5bacee7056e8")
.build());
}
}

Import

Threat Detection Honey Pot can be imported using the id, e.g.

$ pulumi import alicloud:threatdetection/honeyPot:HoneyPot example <id>

Constructors

Link copied to clipboard
fun HoneyPotArgs(honeypotImageId: Output<String>? = null, honeypotImageName: Output<String>? = null, honeypotName: Output<String>? = null, nodeId: Output<String>? = null)

Functions

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

Properties

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

The image ID of the honeypot.

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

Honeypot mirror name.

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

Honeypot custom name.

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

The ID of the honeypot management node.