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:
- Ca
Certificates TrustBundle Source Store Ca Certificates Bundle Source Configuration block for the CA certificates bundle source. See
ca_certificates_bundle_sourcebelow.The following arguments are optional:
- Name string
- Name of the trust store. Changing this forces a new resource to be created.
- Dictionary<string, string>
- Key-value tags for the place index. If configured with a provider
default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level. - Timeouts
Trust
Store Timeouts
- Ca
Certificates TrustBundle Source Store Ca Certificates Bundle Source Args Configuration block for the CA certificates bundle source. See
ca_certificates_bundle_sourcebelow.The following arguments are optional:
- Name string
- Name of the trust store. Changing this forces a new resource to be created.
- map[string]string
- Key-value tags for the place index. If configured with a provider
default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level. - Timeouts
Trust
Store Timeouts Args
- ca
Certificates TrustBundle Source Store Ca Certificates Bundle Source Configuration block for the CA certificates bundle source. See
ca_certificates_bundle_sourcebelow.The following arguments are optional:
- name String
- Name of the trust store. Changing this forces a new resource to be created.
- Map<String,String>
- Key-value tags for the place index. If configured with a provider
default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level. - timeouts
Trust
Store Timeouts
- ca
Certificates TrustBundle Source Store Ca Certificates Bundle Source Configuration block for the CA certificates bundle source. See
ca_certificates_bundle_sourcebelow.The following arguments are optional:
- name string
- Name of the trust store. Changing this forces a new resource to be created.
- {[key: string]: string}
- Key-value tags for the place index. If configured with a provider
default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level. - timeouts
Trust
Store Timeouts
- ca_
certificates_ Trustbundle_ source Store Ca Certificates Bundle Source Args Configuration block for the CA certificates bundle source. See
ca_certificates_bundle_sourcebelow.The following arguments are optional:
- name str
- Name of the trust store. Changing this forces a new resource to be created.
- Mapping[str, str]
- Key-value tags for the place index. If configured with a provider
default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level. - timeouts
Trust
Store Timeouts Args
- ca
Certificates Property MapBundle Source Configuration block for the CA certificates bundle source. See
ca_certificates_bundle_sourcebelow.The following arguments are optional:
- name String
- Name of the trust store. Changing this forces a new resource to be created.
- Map<String>
- Key-value tags for the place index. If configured with a provider
default_tagsconfiguration 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.
- Number
Of intCa Certificates - Number of CA certificates in the trust store.
- Dictionary<string, string>
- A map of tags assigned to the resource, including those inherited from the provider
default_tagsconfiguration 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.
- Number
Of intCa Certificates - Number of CA certificates in the trust store.
- map[string]string
- A map of tags assigned to the resource, including those inherited from the provider
default_tagsconfiguration 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.
- number
Of IntegerCa Certificates - Number of CA certificates in the trust store.
- Map<String,String>
- A map of tags assigned to the resource, including those inherited from the provider
default_tagsconfiguration 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.
- number
Of numberCa Certificates - Number of CA certificates in the trust store.
- {[key: string]: string}
- A map of tags assigned to the resource, including those inherited from the provider
default_tagsconfiguration 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_ intca_ certificates - Number of CA certificates in the trust store.
- Mapping[str, str]
- A map of tags assigned to the resource, including those inherited from the provider
default_tagsconfiguration 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.
- number
Of NumberCa Certificates - Number of CA certificates in the trust store.
- Map<String>
- A map of tags assigned to the resource, including those inherited from the provider
default_tagsconfiguration 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) -> TrustStorefunc 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.
- Arn string
- ARN of the trust store.
- Ca
Certificates TrustBundle Source Store Ca Certificates Bundle Source Configuration block for the CA certificates bundle source. See
ca_certificates_bundle_sourcebelow.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.
- Number
Of intCa Certificates - Number of CA certificates in the trust store.
- Dictionary<string, string>
- Key-value tags for the place index. If configured with a provider
default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level. - Dictionary<string, string>
- A map of tags assigned to the resource, including those inherited from the provider
default_tagsconfiguration block. - Timeouts
Trust
Store Timeouts
- Arn string
- ARN of the trust store.
- Ca
Certificates TrustBundle Source Store Ca Certificates Bundle Source Args Configuration block for the CA certificates bundle source. See
ca_certificates_bundle_sourcebelow.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.
- Number
Of intCa Certificates - Number of CA certificates in the trust store.
- map[string]string
- Key-value tags for the place index. If configured with a provider
default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level. - map[string]string
- A map of tags assigned to the resource, including those inherited from the provider
default_tagsconfiguration block. - Timeouts
Trust
Store Timeouts Args
- arn String
- ARN of the trust store.
- ca
Certificates TrustBundle Source Store Ca Certificates Bundle Source Configuration block for the CA certificates bundle source. See
ca_certificates_bundle_sourcebelow.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.
- number
Of IntegerCa Certificates - Number of CA certificates in the trust store.
- Map<String,String>
- Key-value tags for the place index. If configured with a provider
default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level. - Map<String,String>
- A map of tags assigned to the resource, including those inherited from the provider
default_tagsconfiguration block. - timeouts
Trust
Store Timeouts
- arn string
- ARN of the trust store.
- ca
Certificates TrustBundle Source Store Ca Certificates Bundle Source Configuration block for the CA certificates bundle source. See
ca_certificates_bundle_sourcebelow.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.
- number
Of numberCa Certificates - Number of CA certificates in the trust store.
- {[key: string]: string}
- Key-value tags for the place index. If configured with a provider
default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level. - {[key: string]: string}
- A map of tags assigned to the resource, including those inherited from the provider
default_tagsconfiguration block. - timeouts
Trust
Store Timeouts
- arn str
- ARN of the trust store.
- ca_
certificates_ Trustbundle_ source Store Ca Certificates Bundle Source Args Configuration block for the CA certificates bundle source. See
ca_certificates_bundle_sourcebelow.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_ intca_ certificates - Number of CA certificates in the trust store.
- Mapping[str, str]
- Key-value tags for the place index. If configured with a provider
default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level. - Mapping[str, str]
- A map of tags assigned to the resource, including those inherited from the provider
default_tagsconfiguration block. - timeouts
Trust
Store Timeouts Args
- arn String
- ARN of the trust store.
- ca
Certificates Property MapBundle Source Configuration block for the CA certificates bundle source. See
ca_certificates_bundle_sourcebelow.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.
- number
Of NumberCa Certificates - Number of CA certificates in the trust store.
- Map<String>
- Key-value tags for the place index. If configured with a provider
default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level. - Map<String>
- A map of tags assigned to the resource, including those inherited from the provider
default_tagsconfiguration block. - timeouts Property Map
Supporting Types
TrustStoreCaCertificatesBundleSource, TrustStoreCaCertificatesBundleSourceArgs
- Ca
Certificates TrustBundle S3Location Store Ca Certificates Bundle Source Ca Certificates Bundle S3Location - Configuration block for the S3 location of the CA certificates bundle. See
ca_certificates_bundle_s3_locationbelow.
- Ca
Certificates TrustBundle S3Location Store Ca Certificates Bundle Source Ca Certificates Bundle S3Location - Configuration block for the S3 location of the CA certificates bundle. See
ca_certificates_bundle_s3_locationbelow.
- ca
Certificates TrustBundle S3Location Store Ca Certificates Bundle Source Ca Certificates Bundle S3Location - Configuration block for the S3 location of the CA certificates bundle. See
ca_certificates_bundle_s3_locationbelow.
- ca
Certificates TrustBundle S3Location Store Ca Certificates Bundle Source Ca Certificates Bundle S3Location - Configuration block for the S3 location of the CA certificates bundle. See
ca_certificates_bundle_s3_locationbelow.
- ca_
certificates_ Trustbundle_ s3_ location Store Ca Certificates Bundle Source Ca Certificates Bundle S3Location - Configuration block for the S3 location of the CA certificates bundle. See
ca_certificates_bundle_s3_locationbelow.
- ca
Certificates Property MapBundle S3Location - Configuration block for the S3 location of the CA certificates bundle. See
ca_certificates_bundle_s3_locationbelow.
TrustStoreCaCertificatesBundleSourceCaCertificatesBundleS3Location, TrustStoreCaCertificatesBundleSourceCaCertificatesBundleS3LocationArgs
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
awsTerraform Provider.
