1. Packages
  2. AWS
  3. API Docs
  4. cloudfront
  5. TrustStore
AWS v7.15.0 published on Thursday, Dec 18, 2025 by Pulumi
aws logo
AWS v7.15.0 published on Thursday, Dec 18, 2025 by Pulumi

    Manages an AWS CloudFront Trust Store.

    Example Usage

    Basic Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as aws from "@pulumi/aws";
    
    const example = new aws.cloudfront.TrustStore("example", {
        name: "example-trust-store",
        caCertificatesBundleSource: {
            caCertificatesBundleS3Location: {
                bucket: "example-bucket",
                key: "ca-certificates.pem",
                region: "us-east-1",
            },
        },
    });
    
    import pulumi
    import pulumi_aws as aws
    
    example = aws.cloudfront.TrustStore("example",
        name="example-trust-store",
        ca_certificates_bundle_source={
            "ca_certificates_bundle_s3_location": {
                "bucket": "example-bucket",
                "key": "ca-certificates.pem",
                "region": "us-east-1",
            },
        })
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-aws/sdk/v7/go/aws/cloudfront"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := cloudfront.NewTrustStore(ctx, "example", &cloudfront.TrustStoreArgs{
    			Name: pulumi.String("example-trust-store"),
    			CaCertificatesBundleSource: &cloudfront.TrustStoreCaCertificatesBundleSourceArgs{
    				CaCertificatesBundleS3Location: &cloudfront.TrustStoreCaCertificatesBundleSourceCaCertificatesBundleS3LocationArgs{
    					Bucket: pulumi.String("example-bucket"),
    					Key:    pulumi.String("ca-certificates.pem"),
    					Region: pulumi.String("us-east-1"),
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Aws = Pulumi.Aws;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Aws.CloudFront.TrustStore("example", new()
        {
            Name = "example-trust-store",
            CaCertificatesBundleSource = new Aws.CloudFront.Inputs.TrustStoreCaCertificatesBundleSourceArgs
            {
                CaCertificatesBundleS3Location = new Aws.CloudFront.Inputs.TrustStoreCaCertificatesBundleSourceCaCertificatesBundleS3LocationArgs
                {
                    Bucket = "example-bucket",
                    Key = "ca-certificates.pem",
                    Region = "us-east-1",
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.aws.cloudfront.TrustStore;
    import com.pulumi.aws.cloudfront.TrustStoreArgs;
    import com.pulumi.aws.cloudfront.inputs.TrustStoreCaCertificatesBundleSourceArgs;
    import com.pulumi.aws.cloudfront.inputs.TrustStoreCaCertificatesBundleSourceCaCertificatesBundleS3LocationArgs;
    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 TrustStore("example", TrustStoreArgs.builder()
                .name("example-trust-store")
                .caCertificatesBundleSource(TrustStoreCaCertificatesBundleSourceArgs.builder()
                    .caCertificatesBundleS3Location(TrustStoreCaCertificatesBundleSourceCaCertificatesBundleS3LocationArgs.builder()
                        .bucket("example-bucket")
                        .key("ca-certificates.pem")
                        .region("us-east-1")
                        .build())
                    .build())
                .build());
    
        }
    }
    
    resources:
      example:
        type: aws:cloudfront:TrustStore
        properties:
          name: example-trust-store
          caCertificatesBundleSource:
            caCertificatesBundleS3Location:
              bucket: example-bucket
              key: ca-certificates.pem
              region: us-east-1
    

    With S3 Object Version

    import * as pulumi from "@pulumi/pulumi";
    import * as aws from "@pulumi/aws";
    
    const example = new aws.cloudfront.TrustStore("example", {
        name: "example-trust-store",
        caCertificatesBundleSource: {
            caCertificatesBundleS3Location: {
                bucket: "example-bucket",
                key: "ca-certificates.pem",
                region: "us-east-1",
                version: "abc123",
            },
        },
    });
    
    import pulumi
    import pulumi_aws as aws
    
    example = aws.cloudfront.TrustStore("example",
        name="example-trust-store",
        ca_certificates_bundle_source={
            "ca_certificates_bundle_s3_location": {
                "bucket": "example-bucket",
                "key": "ca-certificates.pem",
                "region": "us-east-1",
                "version": "abc123",
            },
        })
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-aws/sdk/v7/go/aws/cloudfront"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := cloudfront.NewTrustStore(ctx, "example", &cloudfront.TrustStoreArgs{
    			Name: pulumi.String("example-trust-store"),
    			CaCertificatesBundleSource: &cloudfront.TrustStoreCaCertificatesBundleSourceArgs{
    				CaCertificatesBundleS3Location: &cloudfront.TrustStoreCaCertificatesBundleSourceCaCertificatesBundleS3LocationArgs{
    					Bucket:  pulumi.String("example-bucket"),
    					Key:     pulumi.String("ca-certificates.pem"),
    					Region:  pulumi.String("us-east-1"),
    					Version: pulumi.String("abc123"),
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Aws = Pulumi.Aws;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Aws.CloudFront.TrustStore("example", new()
        {
            Name = "example-trust-store",
            CaCertificatesBundleSource = new Aws.CloudFront.Inputs.TrustStoreCaCertificatesBundleSourceArgs
            {
                CaCertificatesBundleS3Location = new Aws.CloudFront.Inputs.TrustStoreCaCertificatesBundleSourceCaCertificatesBundleS3LocationArgs
                {
                    Bucket = "example-bucket",
                    Key = "ca-certificates.pem",
                    Region = "us-east-1",
                    Version = "abc123",
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.aws.cloudfront.TrustStore;
    import com.pulumi.aws.cloudfront.TrustStoreArgs;
    import com.pulumi.aws.cloudfront.inputs.TrustStoreCaCertificatesBundleSourceArgs;
    import com.pulumi.aws.cloudfront.inputs.TrustStoreCaCertificatesBundleSourceCaCertificatesBundleS3LocationArgs;
    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 TrustStore("example", TrustStoreArgs.builder()
                .name("example-trust-store")
                .caCertificatesBundleSource(TrustStoreCaCertificatesBundleSourceArgs.builder()
                    .caCertificatesBundleS3Location(TrustStoreCaCertificatesBundleSourceCaCertificatesBundleS3LocationArgs.builder()
                        .bucket("example-bucket")
                        .key("ca-certificates.pem")
                        .region("us-east-1")
                        .version("abc123")
                        .build())
                    .build())
                .build());
    
        }
    }
    
    resources:
      example:
        type: aws:cloudfront:TrustStore
        properties:
          name: example-trust-store
          caCertificatesBundleSource:
            caCertificatesBundleS3Location:
              bucket: example-bucket
              key: ca-certificates.pem
              region: us-east-1
              version: abc123
    

    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: Optional[TrustStoreArgs] = None,
                   opts: Optional[ResourceOptions] = None)
    
    @overload
    def TrustStore(resource_name: str,
                   opts: Optional[ResourceOptions] = None,
                   ca_certificates_bundle_source: Optional[TrustStoreCaCertificatesBundleSourceArgs] = None,
                   name: Optional[str] = None,
                   tags: Optional[Mapping[str, str]] = None,
                   timeouts: Optional[TrustStoreTimeoutsArgs] = None)
    func NewTrustStore(ctx *Context, name string, args *TrustStoreArgs, opts ...ResourceOption) (*TrustStore, error)
    public TrustStore(string name, TrustStoreArgs? args = null, CustomResourceOptions? opts = null)
    public TrustStore(String name, TrustStoreArgs args)
    public TrustStore(String name, TrustStoreArgs args, CustomResourceOptions options)
    
    type: aws:cloudfront:TrustStore
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args TrustStoreArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args 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 string
    The unique name of the resource.
    args TrustStoreArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args TrustStoreArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args 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.CloudFront.TrustStore("trustStoreResource", new()
    {
        CaCertificatesBundleSource = new Aws.CloudFront.Inputs.TrustStoreCaCertificatesBundleSourceArgs
        {
            CaCertificatesBundleS3Location = new Aws.CloudFront.Inputs.TrustStoreCaCertificatesBundleSourceCaCertificatesBundleS3LocationArgs
            {
                Bucket = "string",
                Key = "string",
                Region = "string",
                Version = "string",
            },
        },
        Name = "string",
        Tags = 
        {
            { "string", "string" },
        },
        Timeouts = new Aws.CloudFront.Inputs.TrustStoreTimeoutsArgs
        {
            Create = "string",
            Delete = "string",
            Update = "string",
        },
    });
    
    example, err := cloudfront.NewTrustStore(ctx, "trustStoreResource", &cloudfront.TrustStoreArgs{
    	CaCertificatesBundleSource: &cloudfront.TrustStoreCaCertificatesBundleSourceArgs{
    		CaCertificatesBundleS3Location: &cloudfront.TrustStoreCaCertificatesBundleSourceCaCertificatesBundleS3LocationArgs{
    			Bucket:  pulumi.String("string"),
    			Key:     pulumi.String("string"),
    			Region:  pulumi.String("string"),
    			Version: pulumi.String("string"),
    		},
    	},
    	Name: pulumi.String("string"),
    	Tags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	Timeouts: &cloudfront.TrustStoreTimeoutsArgs{
    		Create: pulumi.String("string"),
    		Delete: pulumi.String("string"),
    		Update: pulumi.String("string"),
    	},
    })
    
    var trustStoreResource = new com.pulumi.aws.cloudfront.TrustStore("trustStoreResource", com.pulumi.aws.cloudfront.TrustStoreArgs.builder()
        .caCertificatesBundleSource(TrustStoreCaCertificatesBundleSourceArgs.builder()
            .caCertificatesBundleS3Location(TrustStoreCaCertificatesBundleSourceCaCertificatesBundleS3LocationArgs.builder()
                .bucket("string")
                .key("string")
                .region("string")
                .version("string")
                .build())
            .build())
        .name("string")
        .tags(Map.of("string", "string"))
        .timeouts(TrustStoreTimeoutsArgs.builder()
            .create("string")
            .delete("string")
            .update("string")
            .build())
        .build());
    
    trust_store_resource = aws.cloudfront.TrustStore("trustStoreResource",
        ca_certificates_bundle_source={
            "ca_certificates_bundle_s3_location": {
                "bucket": "string",
                "key": "string",
                "region": "string",
                "version": "string",
            },
        },
        name="string",
        tags={
            "string": "string",
        },
        timeouts={
            "create": "string",
            "delete": "string",
            "update": "string",
        })
    
    const trustStoreResource = new aws.cloudfront.TrustStore("trustStoreResource", {
        caCertificatesBundleSource: {
            caCertificatesBundleS3Location: {
                bucket: "string",
                key: "string",
                region: "string",
                version: "string",
            },
        },
        name: "string",
        tags: {
            string: "string",
        },
        timeouts: {
            create: "string",
            "delete": "string",
            update: "string",
        },
    });
    
    type: aws:cloudfront:TrustStore
    properties:
        caCertificatesBundleSource:
            caCertificatesBundleS3Location:
                bucket: string
                key: string
                region: string
                version: string
        name: string
        tags:
            string: string
        timeouts:
            create: string
            delete: string
            update: string
    

    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:

    CaCertificatesBundleSource TrustStoreCaCertificatesBundleSource

    Configuration block for the CA certificates bundle source. See ca_certificates_bundle_source below.

    The following arguments are optional:

    Name string
    Name of the trust store. Changing this forces a new resource to be created.
    Tags Dictionary<string, string>
    Key-value tags for the place index. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    Timeouts TrustStoreTimeouts
    CaCertificatesBundleSource TrustStoreCaCertificatesBundleSourceArgs

    Configuration block for the CA certificates bundle source. See ca_certificates_bundle_source below.

    The following arguments are optional:

    Name string
    Name of the trust store. Changing this forces a new resource to be created.
    Tags map[string]string
    Key-value tags for the place index. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    Timeouts TrustStoreTimeoutsArgs
    caCertificatesBundleSource TrustStoreCaCertificatesBundleSource

    Configuration block for the CA certificates bundle source. See ca_certificates_bundle_source below.

    The following arguments are optional:

    name String
    Name of the trust store. Changing this forces a new resource to be created.
    tags Map<String,String>
    Key-value tags for the place index. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    timeouts TrustStoreTimeouts
    caCertificatesBundleSource TrustStoreCaCertificatesBundleSource

    Configuration block for the CA certificates bundle source. See ca_certificates_bundle_source below.

    The following arguments are optional:

    name string
    Name of the trust store. Changing this forces a new resource to be created.
    tags {[key: string]: string}
    Key-value tags for the place index. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    timeouts TrustStoreTimeouts
    ca_certificates_bundle_source TrustStoreCaCertificatesBundleSourceArgs

    Configuration block for the CA certificates bundle source. See ca_certificates_bundle_source below.

    The following arguments are optional:

    name str
    Name of the trust store. Changing this forces a new resource to be created.
    tags Mapping[str, str]
    Key-value tags for the place index. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    timeouts TrustStoreTimeoutsArgs
    caCertificatesBundleSource Property Map

    Configuration block for the CA certificates bundle source. See ca_certificates_bundle_source below.

    The following arguments are optional:

    name String
    Name of the trust store. Changing this forces a new resource to be created.
    tags Map<String>
    Key-value tags for the place index. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    timeouts Property Map

    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.
    Etag string
    ETag of the trust store.
    Id string
    The provider-assigned unique ID for this managed resource.
    NumberOfCaCertificates int
    Number of CA certificates in the trust store.
    TagsAll Dictionary<string, string>
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.
    Arn string
    ARN of the trust store.
    Etag string
    ETag of the trust store.
    Id string
    The provider-assigned unique ID for this managed resource.
    NumberOfCaCertificates int
    Number of CA certificates in the trust store.
    TagsAll map[string]string
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.
    arn String
    ARN of the trust store.
    etag String
    ETag of the trust store.
    id String
    The provider-assigned unique ID for this managed resource.
    numberOfCaCertificates Integer
    Number of CA certificates in the trust store.
    tagsAll Map<String,String>
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.
    arn string
    ARN of the trust store.
    etag string
    ETag of the trust store.
    id string
    The provider-assigned unique ID for this managed resource.
    numberOfCaCertificates number
    Number of CA certificates in the trust store.
    tagsAll {[key: string]: string}
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.
    arn str
    ARN of the trust store.
    etag str
    ETag of the trust store.
    id str
    The provider-assigned unique ID for this managed resource.
    number_of_ca_certificates int
    Number of CA certificates in the trust store.
    tags_all Mapping[str, str]
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.
    arn String
    ARN of the trust store.
    etag String
    ETag of the trust store.
    id String
    The provider-assigned unique ID for this managed resource.
    numberOfCaCertificates Number
    Number of CA certificates in the trust store.
    tagsAll Map<String>
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    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,
            ca_certificates_bundle_source: Optional[TrustStoreCaCertificatesBundleSourceArgs] = None,
            etag: Optional[str] = None,
            name: Optional[str] = None,
            number_of_ca_certificates: Optional[int] = None,
            tags: Optional[Mapping[str, str]] = None,
            tags_all: Optional[Mapping[str, str]] = None,
            timeouts: Optional[TrustStoreTimeoutsArgs] = 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:cloudfront:TrustStore    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    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
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    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
    The unique name of the resulting resource.
    id
    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
    The unique name of the resulting resource.
    id
    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.
    CaCertificatesBundleSource TrustStoreCaCertificatesBundleSource

    Configuration block for the CA certificates bundle source. See ca_certificates_bundle_source below.

    The following arguments are optional:

    Etag string
    ETag of the trust store.
    Name string
    Name of the trust store. Changing this forces a new resource to be created.
    NumberOfCaCertificates int
    Number of CA certificates in the trust store.
    Tags Dictionary<string, string>
    Key-value tags for the place index. 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.
    Timeouts TrustStoreTimeouts
    Arn string
    ARN of the trust store.
    CaCertificatesBundleSource TrustStoreCaCertificatesBundleSourceArgs

    Configuration block for the CA certificates bundle source. See ca_certificates_bundle_source below.

    The following arguments are optional:

    Etag string
    ETag of the trust store.
    Name string
    Name of the trust store. Changing this forces a new resource to be created.
    NumberOfCaCertificates int
    Number of CA certificates in the trust store.
    Tags map[string]string
    Key-value tags for the place index. 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.
    Timeouts TrustStoreTimeoutsArgs
    arn String
    ARN of the trust store.
    caCertificatesBundleSource TrustStoreCaCertificatesBundleSource

    Configuration block for the CA certificates bundle source. See ca_certificates_bundle_source below.

    The following arguments are optional:

    etag String
    ETag of the trust store.
    name String
    Name of the trust store. Changing this forces a new resource to be created.
    numberOfCaCertificates Integer
    Number of CA certificates in the trust store.
    tags Map<String,String>
    Key-value tags for the place index. 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.
    timeouts TrustStoreTimeouts
    arn string
    ARN of the trust store.
    caCertificatesBundleSource TrustStoreCaCertificatesBundleSource

    Configuration block for the CA certificates bundle source. See ca_certificates_bundle_source below.

    The following arguments are optional:

    etag string
    ETag of the trust store.
    name string
    Name of the trust store. Changing this forces a new resource to be created.
    numberOfCaCertificates number
    Number of CA certificates in the trust store.
    tags {[key: string]: string}
    Key-value tags for the place index. 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.
    timeouts TrustStoreTimeouts
    arn str
    ARN of the trust store.
    ca_certificates_bundle_source TrustStoreCaCertificatesBundleSourceArgs

    Configuration block for the CA certificates bundle source. See ca_certificates_bundle_source below.

    The following arguments are optional:

    etag str
    ETag of the trust store.
    name str
    Name of the trust store. Changing this forces a new resource to be created.
    number_of_ca_certificates int
    Number of CA certificates in the trust store.
    tags Mapping[str, str]
    Key-value tags for the place index. 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.
    timeouts TrustStoreTimeoutsArgs
    arn String
    ARN of the trust store.
    caCertificatesBundleSource Property Map

    Configuration block for the CA certificates bundle source. See ca_certificates_bundle_source below.

    The following arguments are optional:

    etag String
    ETag of the trust store.
    name String
    Name of the trust store. Changing this forces a new resource to be created.
    numberOfCaCertificates Number
    Number of CA certificates in the trust store.
    tags Map<String>
    Key-value tags for the place index. 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.
    timeouts Property Map

    Supporting Types

    TrustStoreCaCertificatesBundleSource, TrustStoreCaCertificatesBundleSourceArgs

    CaCertificatesBundleS3Location TrustStoreCaCertificatesBundleSourceCaCertificatesBundleS3Location
    Configuration block for the S3 location of the CA certificates bundle. See ca_certificates_bundle_s3_location below.
    CaCertificatesBundleS3Location TrustStoreCaCertificatesBundleSourceCaCertificatesBundleS3Location
    Configuration block for the S3 location of the CA certificates bundle. See ca_certificates_bundle_s3_location below.
    caCertificatesBundleS3Location TrustStoreCaCertificatesBundleSourceCaCertificatesBundleS3Location
    Configuration block for the S3 location of the CA certificates bundle. See ca_certificates_bundle_s3_location below.
    caCertificatesBundleS3Location TrustStoreCaCertificatesBundleSourceCaCertificatesBundleS3Location
    Configuration block for the S3 location of the CA certificates bundle. See ca_certificates_bundle_s3_location below.
    ca_certificates_bundle_s3_location TrustStoreCaCertificatesBundleSourceCaCertificatesBundleS3Location
    Configuration block for the S3 location of the CA certificates bundle. See ca_certificates_bundle_s3_location below.
    caCertificatesBundleS3Location Property Map
    Configuration block for the S3 location of the CA certificates bundle. See ca_certificates_bundle_s3_location below.

    TrustStoreCaCertificatesBundleSourceCaCertificatesBundleS3Location, TrustStoreCaCertificatesBundleSourceCaCertificatesBundleS3LocationArgs

    Bucket string
    S3 bucket name containing the CA certificates bundle.
    Key string
    S3 object key for the CA certificates bundle.
    Region string
    AWS region of the S3 bucket.
    Version string
    S3 object version ID for the CA certificates bundle.
    Bucket string
    S3 bucket name containing the CA certificates bundle.
    Key string
    S3 object key for the CA certificates bundle.
    Region string
    AWS region of the S3 bucket.
    Version string
    S3 object version ID for the CA certificates bundle.
    bucket String
    S3 bucket name containing the CA certificates bundle.
    key String
    S3 object key for the CA certificates bundle.
    region String
    AWS region of the S3 bucket.
    version String
    S3 object version ID for the CA certificates bundle.
    bucket string
    S3 bucket name containing the CA certificates bundle.
    key string
    S3 object key for the CA certificates bundle.
    region string
    AWS region of the S3 bucket.
    version string
    S3 object version ID for the CA certificates bundle.
    bucket str
    S3 bucket name containing the CA certificates bundle.
    key str
    S3 object key for the CA certificates bundle.
    region str
    AWS region of the S3 bucket.
    version str
    S3 object version ID for the CA certificates bundle.
    bucket String
    S3 bucket name containing the CA certificates bundle.
    key String
    S3 object key for the CA certificates bundle.
    region String
    AWS region of the S3 bucket.
    version String
    S3 object version ID for the CA certificates bundle.

    TrustStoreTimeouts, TrustStoreTimeoutsArgs

    Create string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    Delete string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    Update string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    Create string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    Delete string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    Update string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    update String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    update string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create str
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete str
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    update str
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    update String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).

    Import

    Using pulumi import, import CloudFront Trust Store using the trust store ID. For example:

    $ pulumi import aws:cloudfront/trustStore:TrustStore example ts_12abcXYZhA4Q6RS6tuvW5Xy0ZZZ
    

    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.
    aws logo
    AWS v7.15.0 published on Thursday, Dec 18, 2025 by Pulumi
      Meet Neo: Your AI Platform Teammate