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

     1  ---
     2  layout: "aws"
     3  page_title: "AWS: aws_elastic_beanstalk_application"
     4  sidebar_current: "docs-aws-resource-elastic-beanstalk-application"
     5  description: |-
     6    Provides an Elastic Beanstalk Application Resource
     7  ---
     8  
     9  # aws\_elastic\_beanstalk\_<wbr>application
    10  
    11  Provides an Elastic Beanstalk Application Resource. Elastic Beanstalk allows
    12  you to deploy and manage applications in the AWS cloud without worrying about
    13  the infrastructure that runs those applications.
    14  
    15  This resource creates an application that has one configuration template named
    16  `default`, and no application versions
    17  
    18  ## Example Usage
    19  
    20  ```hcl
    21  resource "aws_elastic_beanstalk_application" "tftest" {
    22    name        = "tf-test-name"
    23    description = "tf-test-desc"
    24  }
    25  ```
    26  
    27  ## Argument Reference
    28  
    29  The following arguments are supported:
    30  
    31  * `name` - (Required) The name of the application, must be unique within your account
    32  * `description` - (Optional) Short description of the application
    33  
    34  ## Attributes Reference
    35  
    36  The following attributes are exported:
    37  
    38  * `name`
    39  * `description`
    40  
    41  
    42  ## Import
    43  
    44  Elastic Beanstalk Applications can be imported using the `name`, e.g.
    45  
    46  ```
    47  $ terraform import aws_elastic_beanstalk_application.tf_test tf-test-name
    48  ```