TrustStoreArgs

data class TrustStoreArgs(val caCertificatesBundleS3Bucket: Output<String>? = null, val caCertificatesBundleS3Key: Output<String>? = null, val caCertificatesBundleS3ObjectVersion: Output<String>? = null, val name: Output<String>? = null, val namePrefix: Output<String>? = null, val tags: Output<Map<String, String>>? = null) : ConvertibleToJava<TrustStoreArgs>

Provides a ELBv2 Trust Store for use with Application Load Balancer Listener resources.

Example Usage

Import

Using pulumi import, import Target Groups using their ARN. For example:

$ pulumi import aws:lb/trustStore:TrustStore example arn:aws:elasticloadbalancing:us-west-2:187416307283:truststore/my-trust-store/20cfe21448b66314

Constructors

Link copied to clipboard
constructor(caCertificatesBundleS3Bucket: Output<String>? = null, caCertificatesBundleS3Key: Output<String>? = null, caCertificatesBundleS3ObjectVersion: Output<String>? = null, name: Output<String>? = null, namePrefix: Output<String>? = null, tags: Output<Map<String, String>>? = null)

Properties

Link copied to clipboard

S3 Bucket name holding the client certificate CA bundle.

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

S3 object key holding the client certificate CA bundle.

Link copied to clipboard

Version Id of CA bundle S3 bucket object, if versioned, defaults to latest if omitted.

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

Name of the Trust Store. If omitted, the provider will assign a random, unique name. This name must be unique per region per account, can have a maximum of 32 characters, must contain only alphanumeric characters or hyphens, and must not begin or end with a hyphen.

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

Creates a unique name beginning with the specified prefix. Conflicts with name. Cannot be longer than 6 characters.

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

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(): TrustStoreArgs