Provides a SimpleDB domain resource
resource "aws_simpledb_domain" "users" {
name = "users"
}
This resource supports the following arguments:
name
- (Required) The name of the SimpleDB domainThis resource exports the following attributes in addition to the arguments above:
id
- The name of the SimpleDB domainIn 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