Resource: aws_cloudfront_key_value_store

Terraform resource for managing an AWS CloudFront Key Value Store.

Example Usage

Basic Usage

resource "aws_cloudfront_key_value_store" "example" {
  name    = "ExampleKeyValueStore"
  comment = "This is an example key value store"
}

Argument Reference

The following arguments are required:

The following arguments are optional:

Attribute Reference

This resource exports the following attributes in addition to the arguments above:

Timeouts

Configuration options:

Import

In Terraform v1.5.0 and later, use an import block to import CloudFront Key Value Store using the name. For example:

import {
  to = aws_cloudfront_key_value_store.example
  id = "example_store"
}

Using terraform import, import CloudFront Key Value Store using the name. For example:

% terraform import aws_cloudfront_key_value_store.example example_store