2016-07-12 13:55:58 +02:00
|
|
|
---
|
|
|
|
layout: "aws"
|
|
|
|
page_title: "AWS: simpledb_domain"
|
|
|
|
sidebar_current: "docs-aws-resource-simpledb-domain"
|
|
|
|
description: |-
|
|
|
|
Provides a SimpleDB domain resource.
|
|
|
|
---
|
|
|
|
|
|
|
|
# aws\_simpledb\_domain
|
|
|
|
|
|
|
|
Provides a SimpleDB domain resource
|
|
|
|
|
|
|
|
## Example Usage
|
|
|
|
|
|
|
|
```
|
|
|
|
resource "aws_simpledb_domain" "users" {
|
|
|
|
name = "users"
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
## Argument Reference
|
|
|
|
|
|
|
|
The following arguments are supported:
|
|
|
|
|
|
|
|
* `name` - (Required) The name of the SimpleDB domain
|
|
|
|
|
|
|
|
## Attributes Reference
|
|
|
|
|
|
|
|
The following attributes are exported:
|
|
|
|
|
|
|
|
* `id` - The name of the SimpleDB domain
|
2016-07-19 18:22:30 +02:00
|
|
|
|
|
|
|
## Import
|
|
|
|
|
|
|
|
SimpleDB Domains can be imported using the `name`, e.g.
|
|
|
|
|
|
|
|
```
|
2016-07-21 00:28:59 +02:00
|
|
|
$ terraform import aws_simpledb_domain.users users
|
2016-07-19 18:22:30 +02:00
|
|
|
```
|