-
Notifications
You must be signed in to change notification settings - Fork 9.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added the documentation for the CodeCommit repository
- Loading branch information
Showing
3 changed files
with
49 additions
and
1 deletion.
There are no files selected for viewing
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
37 changes: 37 additions & 0 deletions
37
website/source/docs/providers/aws/r/code_commit_repository.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,37 @@ | ||
--- | ||
layout: "aws" | ||
page_title: "AWS: aws_codecommit_repository" | ||
sidebar_current: "docs-aws-resource-codecommit-repository" | ||
description: |- | ||
Provides a CodeCommit Repository Resource. | ||
--- | ||
|
||
# aws\_codecommit\_repository | ||
|
||
Provides a CodeCommit Repository Resource. | ||
|
||
## Example Usage | ||
|
||
``` | ||
resource "aws_codecommit_repository" "test" { | ||
repository_name = "MyTestRepository" | ||
description = "This is the Sample App Repository" | ||
} | ||
``` | ||
|
||
## Argument Reference | ||
|
||
The following arguments are supported: | ||
|
||
* `repository_name` - (Required) The name for the repository. This needs to be less than 100 characters. | ||
* `description` - (Optional) The description of the repository. This needs to be less than 1000 characters | ||
* `default_branch` - (Optional) The default branch of the repository. The branch specified here needs to exist. | ||
|
||
## Attributes Reference | ||
|
||
The following attributes are exported: | ||
|
||
* `repository_id` - The ID of the repository | ||
* `arn` - The ARN of the repository | ||
* `clone_url_http` - The URL to use for cloning the repository over HTTPS. | ||
* `clone_url_ssh` - The URL to use for cloning the repository over SSH. |
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