Resource: aws_simpledb_domain

Provides a SimpleDB domain resource

Example Usage

resource "aws_simpledb_domain" "users" {
  name = "users"
}

Argument Reference

This resource supports the following arguments:

Attribute Reference

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

Import

In Terraform v1.5.0 and later, use an import block to import SimpleDB Domains using the name. For example:

import {
  to = aws_simpledb_domain.users
  id = "users"
}

Using terraform import, import SimpleDB Domains using the name. For example:

% terraform import aws_simpledb_domain.users users