Skip to content

Commit

Permalink
aws: Add documentation for "aws_codedeploy_app" resources.
Browse files Browse the repository at this point in the history
  • Loading branch information
ctiwald committed Jul 30, 2015
1 parent 8cb097c commit 9b1f8f1
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 0 deletions.
32 changes: 32 additions & 0 deletions website/source/docs/providers/aws/r/codedeploy_app.html.markdown
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
---
layout: "aws"
page_title: "AWS: aws_codedeploy_app"
sidebar_current: "docs-aws-resource-codedeploy-app"
description: |\
Provides a CodeDeploy application.
---

# aws\_codedeploy\_app

Provides a CodeDeploy application to be used as a basis for deployments

## Example Usage

```
resource "aws_codedeploy_app" "foo" {
name = "foo"
}
```

## Argument Reference

The following arguments are supported:

* `name` - (Required) The name of the application.

## Attribute Reference

The following arguments are exported:

* `id` - Amazon's assigned ID for the application.
* `name` - The application's name.
5 changes: 5 additions & 0 deletions website/source/layouts/aws.erb
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
<li<%= sidebar_current("docs-aws-app-cookie-stickiness-policy") %>>
<a href="/docs/providers/aws/r/app_cookie_stickiness_policy.html">aws_app_cookie_stickiness_policy</a>
</li>

<li<%= sidebar_current("docs-aws-resource-autoscaling-group") %>>
<a href="/docs/providers/aws/r/autoscaling_group.html">aws_autoscaling_group</a>
</li>
Expand All @@ -32,6 +33,10 @@
<a href="/docs/providers/aws/r/cloudwatch_metric_alarm.html">aws_cloudwatch_metric_alarm</a>
</li>

<li<%= sidebar_current("docs-aws-resource-codedeploy-app") %>>
<a href="/docs/providers/aws/r/codedeploy_app.html">aws_codedeploy_app</a>
</li>

<li<%= sidebar_current("docs-aws-resource-customer-gateway") %>>
<a href="/docs/providers/aws/r/customer_gateway.html">aws_customer_gateway</a>
</li>
Expand Down

0 comments on commit 9b1f8f1

Please sign in to comment.