FEATURES OPEN SOURCE ABOUT DOCS LOGIN REGISTER

aws_elastic_beanstalk_application

Provides an Elastic Beanstalk Application Resource. Elastic Beanstalk allows you to deploy and manage applications in the AWS cloud without worrying about the infrastructure that runs those applications.

This resource creates an application that has one configuration template named default, and no application versions

Example Usage

resource "aws_elastic_beanstalk_application" "tftest" {
  name = "tf-test-name"
  description = "tf-test-desc"
}

Argument Reference

The following arguments are supported:

Attributes Reference

The following attributes are exported:

Import

Elastic Beanstalk Applications can be imported using the name, e.g.

$ terraform import aws_elastic_beanstalk_application.tf_test tf-test-name

See the source of this document at Terraform.io