github.com/nathanielks/terraform@v0.6.1-0.20170509030759-13e1a62319dc/website/source/docs/providers/aws/r/simpledb_domain.html.markdown (about)

     1  ---
     2  layout: "aws"
     3  page_title: "AWS: simpledb_domain"
     4  sidebar_current: "docs-aws-resource-simpledb-domain"
     5  description: |-
     6    Provides a SimpleDB domain resource.
     7  ---
     8  
     9  # aws\_simpledb\_domain
    10  
    11  Provides a SimpleDB domain resource
    12  
    13  ## Example Usage
    14  
    15  ```hcl
    16  resource "aws_simpledb_domain" "users" {
    17    name = "users"
    18  }
    19  ```
    20  
    21  ## Argument Reference
    22  
    23  The following arguments are supported:
    24  
    25  * `name` - (Required) The name of the SimpleDB domain
    26  
    27  ## Attributes Reference
    28  
    29  The following attributes are exported:
    30  
    31  * `id` - The name of the SimpleDB domain
    32  
    33  ## Import
    34  
    35  SimpleDB Domains can be imported using the `name`, e.g.
    36  
    37  ```
    38  $ terraform import aws_simpledb_domain.users users
    39  ```