github.com/jmbataller/terraform@v0.6.8-0.20151125192640-b7a12e3a580c/website/source/docs/providers/aws/r/codedeploy_app.html.markdown (about) 1 --- 2 layout: "aws" 3 page_title: "AWS: aws_codedeploy_app" 4 sidebar_current: "docs-aws-resource-codedeploy-app" 5 description: |- 6 Provides a CodeDeploy application. 7 --- 8 9 # aws\_codedeploy\_app 10 11 Provides a CodeDeploy application to be used as a basis for deployments 12 13 ## Example Usage 14 15 ``` 16 resource "aws_codedeploy_app" "foo" { 17 name = "foo" 18 } 19 ``` 20 21 ## Argument Reference 22 23 The following arguments are supported: 24 25 * `name` - (Required) The name of the application. 26 27 ## Attribute Reference 28 29 The following arguments are exported: 30 31 * `id` - Amazon's assigned ID for the application. 32 * `name` - The application's name.