Resource Type definition for AWS::CloudFront::KeyValueStore
resource "awscc_cloudfront_key_value_store" "example" {
name = "ExampleKeyValueStore"
comment = "This is an example key value store"
}
Creates a Cloudfront key value store with S3 as the source. File format details can be found here
resource "awscc_cloudfront_key_value_store" "example" {
name = "ExampleKeyValueStore"
comment = "This is an example key value store"
import_source = {
source_arn = "arn:aws:s3:::your-bucket-name/key-value-file"
source_type = "S3"
}
}
name
(String)comment
(String)import_source
(Attributes) (see below for nested schema)arn
(String)id
(String) Uniquely identifies the resource.key_value_store_id
(String)status
(String)import_source
Required:
source_arn
(String)source_type
(String)Import is supported using the following syntax:
$ terraform import awscc_cloudfront_key_value_store.example <resource ID>