1. Packages
  2. AWS
  3. API Docs
  4. lb
  5. TrustStore
AWS v6.77.0 published on Wednesday, Apr 9, 2025 by Pulumi

aws.lb.TrustStore

Explore with Pulumi AI

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

Example Usage

Trust Store Load Balancer Listener

import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";

const test = new aws.lb.TrustStore("test", {
    name: "tf-example-lb-ts",
    caCertificatesBundleS3Bucket: "...",
    caCertificatesBundleS3Key: "...",
});
const example = new aws.lb.Listener("example", {
    loadBalancerArn: exampleAwsLb.id,
    defaultActions: [{
        targetGroupArn: exampleAwsLbTargetGroup.id,
        type: "forward",
    }],
    mutualAuthentication: {
        mode: "verify",
        trustStoreArn: test.arn,
    },
});
Copy
import pulumi
import pulumi_aws as aws

test = aws.lb.TrustStore("test",
    name="tf-example-lb-ts",
    ca_certificates_bundle_s3_bucket="...",
    ca_certificates_bundle_s3_key="...")
example = aws.lb.Listener("example",
    load_balancer_arn=example_aws_lb["id"],
    default_actions=[{
        "target_group_arn": example_aws_lb_target_group["id"],
        "type": "forward",
    }],
    mutual_authentication={
        "mode": "verify",
        "trust_store_arn": test.arn,
    })
Copy
package main

import (
	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/lb"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		test, err := lb.NewTrustStore(ctx, "test", &lb.TrustStoreArgs{
			Name:                         pulumi.String("tf-example-lb-ts"),
			CaCertificatesBundleS3Bucket: pulumi.String("..."),
			CaCertificatesBundleS3Key:    pulumi.String("..."),
		})
		if err != nil {
			return err
		}
		_, err = lb.NewListener(ctx, "example", &lb.ListenerArgs{
			LoadBalancerArn: pulumi.Any(exampleAwsLb.Id),
			DefaultActions: lb.ListenerDefaultActionArray{
				&lb.ListenerDefaultActionArgs{
					TargetGroupArn: pulumi.Any(exampleAwsLbTargetGroup.Id),
					Type:           pulumi.String("forward"),
				},
			},
			MutualAuthentication: &lb.ListenerMutualAuthenticationArgs{
				Mode:          pulumi.String("verify"),
				TrustStoreArn: test.Arn,
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;

return await Deployment.RunAsync(() => 
{
    var test = new Aws.LB.TrustStore("test", new()
    {
        Name = "tf-example-lb-ts",
        CaCertificatesBundleS3Bucket = "...",
        CaCertificatesBundleS3Key = "...",
    });

    var example = new Aws.LB.Listener("example", new()
    {
        LoadBalancerArn = exampleAwsLb.Id,
        DefaultActions = new[]
        {
            new Aws.LB.Inputs.ListenerDefaultActionArgs
            {
                TargetGroupArn = exampleAwsLbTargetGroup.Id,
                Type = "forward",
            },
        },
        MutualAuthentication = new Aws.LB.Inputs.ListenerMutualAuthenticationArgs
        {
            Mode = "verify",
            TrustStoreArn = test.Arn,
        },
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.lb.TrustStore;
import com.pulumi.aws.lb.TrustStoreArgs;
import com.pulumi.aws.lb.Listener;
import com.pulumi.aws.lb.ListenerArgs;
import com.pulumi.aws.lb.inputs.ListenerDefaultActionArgs;
import com.pulumi.aws.lb.inputs.ListenerMutualAuthenticationArgs;
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 test = new TrustStore("test", TrustStoreArgs.builder()
            .name("tf-example-lb-ts")
            .caCertificatesBundleS3Bucket("...")
            .caCertificatesBundleS3Key("...")
            .build());

        var example = new Listener("example", ListenerArgs.builder()
            .loadBalancerArn(exampleAwsLb.id())
            .defaultActions(ListenerDefaultActionArgs.builder()
                .targetGroupArn(exampleAwsLbTargetGroup.id())
                .type("forward")
                .build())
            .mutualAuthentication(ListenerMutualAuthenticationArgs.builder()
                .mode("verify")
                .trustStoreArn(test.arn())
                .build())
            .build());

    }
}
Copy
resources:
  test:
    type: aws:lb:TrustStore
    properties:
      name: tf-example-lb-ts
      caCertificatesBundleS3Bucket: '...'
      caCertificatesBundleS3Key: '...'
  example:
    type: aws:lb:Listener
    properties:
      loadBalancerArn: ${exampleAwsLb.id}
      defaultActions:
        - targetGroupArn: ${exampleAwsLbTargetGroup.id}
          type: forward
      mutualAuthentication:
        mode: verify
        trustStoreArn: ${test.arn}
Copy

Create TrustStore Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new TrustStore(name: string, args: TrustStoreArgs, opts?: CustomResourceOptions);
@overload
def TrustStore(resource_name: str,
               args: TrustStoreArgs,
               opts: Optional[ResourceOptions] = None)

@overload
def TrustStore(resource_name: str,
               opts: Optional[ResourceOptions] = None,
               ca_certificates_bundle_s3_bucket: Optional[str] = None,
               ca_certificates_bundle_s3_key: Optional[str] = None,
               ca_certificates_bundle_s3_object_version: Optional[str] = None,
               name: Optional[str] = None,
               name_prefix: Optional[str] = None,
               tags: Optional[Mapping[str, str]] = None)
func NewTrustStore(ctx *Context, name string, args TrustStoreArgs, opts ...ResourceOption) (*TrustStore, error)
public TrustStore(string name, TrustStoreArgs args, CustomResourceOptions? opts = null)
public TrustStore(String name, TrustStoreArgs args)
public TrustStore(String name, TrustStoreArgs args, CustomResourceOptions options)
type: aws:lb:TrustStore
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. TrustStoreArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. TrustStoreArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. TrustStoreArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. TrustStoreArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. TrustStoreArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

Constructor example

The following reference example uses placeholder values for all input properties.

var trustStoreResource = new Aws.LB.TrustStore("trustStoreResource", new()
{
    CaCertificatesBundleS3Bucket = "string",
    CaCertificatesBundleS3Key = "string",
    CaCertificatesBundleS3ObjectVersion = "string",
    Name = "string",
    NamePrefix = "string",
    Tags = 
    {
        { "string", "string" },
    },
});
Copy
example, err := lb.NewTrustStore(ctx, "trustStoreResource", &lb.TrustStoreArgs{
	CaCertificatesBundleS3Bucket:        pulumi.String("string"),
	CaCertificatesBundleS3Key:           pulumi.String("string"),
	CaCertificatesBundleS3ObjectVersion: pulumi.String("string"),
	Name:                                pulumi.String("string"),
	NamePrefix:                          pulumi.String("string"),
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
})
Copy
var trustStoreResource = new TrustStore("trustStoreResource", TrustStoreArgs.builder()
    .caCertificatesBundleS3Bucket("string")
    .caCertificatesBundleS3Key("string")
    .caCertificatesBundleS3ObjectVersion("string")
    .name("string")
    .namePrefix("string")
    .tags(Map.of("string", "string"))
    .build());
Copy
trust_store_resource = aws.lb.TrustStore("trustStoreResource",
    ca_certificates_bundle_s3_bucket="string",
    ca_certificates_bundle_s3_key="string",
    ca_certificates_bundle_s3_object_version="string",
    name="string",
    name_prefix="string",
    tags={
        "string": "string",
    })
Copy
const trustStoreResource = new aws.lb.TrustStore("trustStoreResource", {
    caCertificatesBundleS3Bucket: "string",
    caCertificatesBundleS3Key: "string",
    caCertificatesBundleS3ObjectVersion: "string",
    name: "string",
    namePrefix: "string",
    tags: {
        string: "string",
    },
});
Copy
type: aws:lb:TrustStore
properties:
    caCertificatesBundleS3Bucket: string
    caCertificatesBundleS3Key: string
    caCertificatesBundleS3ObjectVersion: string
    name: string
    namePrefix: string
    tags:
        string: string
Copy

TrustStore Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The TrustStore resource accepts the following input properties:

CaCertificatesBundleS3Bucket This property is required. string
S3 Bucket name holding the client certificate CA bundle.
CaCertificatesBundleS3Key This property is required. string
S3 object key holding the client certificate CA bundle.
CaCertificatesBundleS3ObjectVersion string
Version Id of CA bundle S3 bucket object, if versioned, defaults to latest if omitted.
Name Changes to this property will trigger replacement. string
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.
NamePrefix Changes to this property will trigger replacement. string
Creates a unique name beginning with the specified prefix. Conflicts with name. Cannot be longer than 6 characters.
Tags Dictionary<string, string>
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.
CaCertificatesBundleS3Bucket This property is required. string
S3 Bucket name holding the client certificate CA bundle.
CaCertificatesBundleS3Key This property is required. string
S3 object key holding the client certificate CA bundle.
CaCertificatesBundleS3ObjectVersion string
Version Id of CA bundle S3 bucket object, if versioned, defaults to latest if omitted.
Name Changes to this property will trigger replacement. string
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.
NamePrefix Changes to this property will trigger replacement. string
Creates a unique name beginning with the specified prefix. Conflicts with name. Cannot be longer than 6 characters.
Tags map[string]string
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.
caCertificatesBundleS3Bucket This property is required. String
S3 Bucket name holding the client certificate CA bundle.
caCertificatesBundleS3Key This property is required. String
S3 object key holding the client certificate CA bundle.
caCertificatesBundleS3ObjectVersion String
Version Id of CA bundle S3 bucket object, if versioned, defaults to latest if omitted.
name Changes to this property will trigger replacement. String
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.
namePrefix Changes to this property will trigger replacement. String
Creates a unique name beginning with the specified prefix. Conflicts with name. Cannot be longer than 6 characters.
tags Map<String,String>
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.
caCertificatesBundleS3Bucket This property is required. string
S3 Bucket name holding the client certificate CA bundle.
caCertificatesBundleS3Key This property is required. string
S3 object key holding the client certificate CA bundle.
caCertificatesBundleS3ObjectVersion string
Version Id of CA bundle S3 bucket object, if versioned, defaults to latest if omitted.
name Changes to this property will trigger replacement. string
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.
namePrefix Changes to this property will trigger replacement. string
Creates a unique name beginning with the specified prefix. Conflicts with name. Cannot be longer than 6 characters.
tags {[key: string]: string}
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.
ca_certificates_bundle_s3_bucket This property is required. str
S3 Bucket name holding the client certificate CA bundle.
ca_certificates_bundle_s3_key This property is required. str
S3 object key holding the client certificate CA bundle.
ca_certificates_bundle_s3_object_version str
Version Id of CA bundle S3 bucket object, if versioned, defaults to latest if omitted.
name Changes to this property will trigger replacement. str
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.
name_prefix Changes to this property will trigger replacement. str
Creates a unique name beginning with the specified prefix. Conflicts with name. Cannot be longer than 6 characters.
tags Mapping[str, str]
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.
caCertificatesBundleS3Bucket This property is required. String
S3 Bucket name holding the client certificate CA bundle.
caCertificatesBundleS3Key This property is required. String
S3 object key holding the client certificate CA bundle.
caCertificatesBundleS3ObjectVersion String
Version Id of CA bundle S3 bucket object, if versioned, defaults to latest if omitted.
name Changes to this property will trigger replacement. String
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.
namePrefix Changes to this property will trigger replacement. String
Creates a unique name beginning with the specified prefix. Conflicts with name. Cannot be longer than 6 characters.
tags Map<String>
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.

Outputs

All input properties are implicitly available as output properties. Additionally, the TrustStore resource produces the following output properties:

Arn string
ARN of the Trust Store (matches id).
ArnSuffix string
ARN suffix for use with CloudWatch Metrics.
Id string
The provider-assigned unique ID for this managed resource.
TagsAll Dictionary<string, string>
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

Arn string
ARN of the Trust Store (matches id).
ArnSuffix string
ARN suffix for use with CloudWatch Metrics.
Id string
The provider-assigned unique ID for this managed resource.
TagsAll map[string]string
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

arn String
ARN of the Trust Store (matches id).
arnSuffix String
ARN suffix for use with CloudWatch Metrics.
id String
The provider-assigned unique ID for this managed resource.
tagsAll Map<String,String>
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

arn string
ARN of the Trust Store (matches id).
arnSuffix string
ARN suffix for use with CloudWatch Metrics.
id string
The provider-assigned unique ID for this managed resource.
tagsAll {[key: string]: string}
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

arn str
ARN of the Trust Store (matches id).
arn_suffix str
ARN suffix for use with CloudWatch Metrics.
id str
The provider-assigned unique ID for this managed resource.
tags_all Mapping[str, str]
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

arn String
ARN of the Trust Store (matches id).
arnSuffix String
ARN suffix for use with CloudWatch Metrics.
id String
The provider-assigned unique ID for this managed resource.
tagsAll Map<String>
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

Look up Existing TrustStore Resource

Get an existing TrustStore resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

public static get(name: string, id: Input<ID>, state?: TrustStoreState, opts?: CustomResourceOptions): TrustStore
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        arn: Optional[str] = None,
        arn_suffix: Optional[str] = None,
        ca_certificates_bundle_s3_bucket: Optional[str] = None,
        ca_certificates_bundle_s3_key: Optional[str] = None,
        ca_certificates_bundle_s3_object_version: Optional[str] = None,
        name: Optional[str] = None,
        name_prefix: Optional[str] = None,
        tags: Optional[Mapping[str, str]] = None,
        tags_all: Optional[Mapping[str, str]] = None) -> TrustStore
func GetTrustStore(ctx *Context, name string, id IDInput, state *TrustStoreState, opts ...ResourceOption) (*TrustStore, error)
public static TrustStore Get(string name, Input<string> id, TrustStoreState? state, CustomResourceOptions? opts = null)
public static TrustStore get(String name, Output<String> id, TrustStoreState state, CustomResourceOptions options)
resources:  _:    type: aws:lb:TrustStore    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
Arn string
ARN of the Trust Store (matches id).
ArnSuffix string
ARN suffix for use with CloudWatch Metrics.
CaCertificatesBundleS3Bucket string
S3 Bucket name holding the client certificate CA bundle.
CaCertificatesBundleS3Key string
S3 object key holding the client certificate CA bundle.
CaCertificatesBundleS3ObjectVersion string
Version Id of CA bundle S3 bucket object, if versioned, defaults to latest if omitted.
Name Changes to this property will trigger replacement. string
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.
NamePrefix Changes to this property will trigger replacement. string
Creates a unique name beginning with the specified prefix. Conflicts with name. Cannot be longer than 6 characters.
Tags Dictionary<string, string>
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.
TagsAll Dictionary<string, string>
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

Arn string
ARN of the Trust Store (matches id).
ArnSuffix string
ARN suffix for use with CloudWatch Metrics.
CaCertificatesBundleS3Bucket string
S3 Bucket name holding the client certificate CA bundle.
CaCertificatesBundleS3Key string
S3 object key holding the client certificate CA bundle.
CaCertificatesBundleS3ObjectVersion string
Version Id of CA bundle S3 bucket object, if versioned, defaults to latest if omitted.
Name Changes to this property will trigger replacement. string
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.
NamePrefix Changes to this property will trigger replacement. string
Creates a unique name beginning with the specified prefix. Conflicts with name. Cannot be longer than 6 characters.
Tags map[string]string
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.
TagsAll map[string]string
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

arn String
ARN of the Trust Store (matches id).
arnSuffix String
ARN suffix for use with CloudWatch Metrics.
caCertificatesBundleS3Bucket String
S3 Bucket name holding the client certificate CA bundle.
caCertificatesBundleS3Key String
S3 object key holding the client certificate CA bundle.
caCertificatesBundleS3ObjectVersion String
Version Id of CA bundle S3 bucket object, if versioned, defaults to latest if omitted.
name Changes to this property will trigger replacement. String
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.
namePrefix Changes to this property will trigger replacement. String
Creates a unique name beginning with the specified prefix. Conflicts with name. Cannot be longer than 6 characters.
tags Map<String,String>
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.
tagsAll Map<String,String>
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

arn string
ARN of the Trust Store (matches id).
arnSuffix string
ARN suffix for use with CloudWatch Metrics.
caCertificatesBundleS3Bucket string
S3 Bucket name holding the client certificate CA bundle.
caCertificatesBundleS3Key string
S3 object key holding the client certificate CA bundle.
caCertificatesBundleS3ObjectVersion string
Version Id of CA bundle S3 bucket object, if versioned, defaults to latest if omitted.
name Changes to this property will trigger replacement. string
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.
namePrefix Changes to this property will trigger replacement. string
Creates a unique name beginning with the specified prefix. Conflicts with name. Cannot be longer than 6 characters.
tags {[key: string]: string}
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.
tagsAll {[key: string]: string}
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

arn str
ARN of the Trust Store (matches id).
arn_suffix str
ARN suffix for use with CloudWatch Metrics.
ca_certificates_bundle_s3_bucket str
S3 Bucket name holding the client certificate CA bundle.
ca_certificates_bundle_s3_key str
S3 object key holding the client certificate CA bundle.
ca_certificates_bundle_s3_object_version str
Version Id of CA bundle S3 bucket object, if versioned, defaults to latest if omitted.
name Changes to this property will trigger replacement. str
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.
name_prefix Changes to this property will trigger replacement. str
Creates a unique name beginning with the specified prefix. Conflicts with name. Cannot be longer than 6 characters.
tags Mapping[str, str]
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.
tags_all Mapping[str, str]
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

arn String
ARN of the Trust Store (matches id).
arnSuffix String
ARN suffix for use with CloudWatch Metrics.
caCertificatesBundleS3Bucket String
S3 Bucket name holding the client certificate CA bundle.
caCertificatesBundleS3Key String
S3 object key holding the client certificate CA bundle.
caCertificatesBundleS3ObjectVersion String
Version Id of CA bundle S3 bucket object, if versioned, defaults to latest if omitted.
name Changes to this property will trigger replacement. String
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.
namePrefix Changes to this property will trigger replacement. String
Creates a unique name beginning with the specified prefix. Conflicts with name. Cannot be longer than 6 characters.
tags Map<String>
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.
tagsAll Map<String>
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

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
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
AWS Classic pulumi/pulumi-aws
License
Apache-2.0
Notes
This Pulumi package is based on the aws Terraform Provider.