HsmConfigurationArgs

data class HsmConfigurationArgs(val description: Output<String>? = null, val hsmConfigurationIdentifier: Output<String>? = null, val hsmIpAddress: Output<String>? = null, val hsmPartitionName: Output<String>? = null, val hsmPartitionPassword: Output<String>? = null, val hsmServerPublicCertificate: Output<String>? = null, val tags: Output<Map<String, String>>? = null) : ConvertibleToJava<HsmConfigurationArgs>

Creates an HSM configuration that contains the information required by an Amazon Redshift cluster to store and use database encryption keys in a Hardware Security Module (HSM).

Example Usage

package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.redshift.HsmConfiguration;
import com.pulumi.aws.redshift.HsmConfigurationArgs;
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 example = new HsmConfiguration("example", HsmConfigurationArgs.builder()
.description("example")
.hsmConfigurationIdentifier("example")
.hsmIpAddress("10.0.0.1")
.hsmPartitionName("aws")
.hsmPartitionPassword("example")
.hsmServerPublicCertificate("example")
.build());
}
}

Import

Redshift Hsm Client Certificates support import by hsm_configuration_identifier, e.g., console

$ pulumi import aws:redshift/hsmConfiguration:HsmConfiguration example example

Constructors

Link copied to clipboard
constructor(description: Output<String>? = null, hsmConfigurationIdentifier: Output<String>? = null, hsmIpAddress: Output<String>? = null, hsmPartitionName: Output<String>? = null, hsmPartitionPassword: Output<String>? = null, hsmServerPublicCertificate: Output<String>? = null, tags: Output<Map<String, String>>? = null)

Properties

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

A text description of the HSM configuration to be created.

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

The identifier to be assigned to the new Amazon Redshift HSM configuration.

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

The IP address that the Amazon Redshift cluster must use to access the HSM.

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

The name of the partition in the HSM where the Amazon Redshift clusters will store their database encryption keys.

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

The password required to access the HSM partition.

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

The HSMs public certificate file. When using Cloud HSM, the file name is server.pem.

Link copied to clipboard
val tags: Output<Map<String, String>>? = null

A map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

Functions

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