-
Notifications
You must be signed in to change notification settings - Fork 9.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
aws: Add documentation for "aws_codedeploy_app" resources.
- Loading branch information
Showing
2 changed files
with
37 additions
and
0 deletions.
There are no files selected for viewing
32 changes: 32 additions & 0 deletions
32
website/source/docs/providers/aws/r/codedeploy_app.html.markdown
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters