-
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.
aws: Add documentation around aws_sns_topic.
- Loading branch information
Showing
2 changed files
with
36 additions
and
0 deletions.
There are no files selected for viewing
32 changes: 32 additions & 0 deletions
32
website/source/docs/providers/aws/r/sns_topic.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_sns_topic" | ||
sidebar_current: "docs-aws-resource-sns-topic" | ||
description: |- | ||
Provides an SNS topic | ||
--- | ||
|
||
# aws\_sns\_topic | ||
|
||
Provides an SNS topic. | ||
|
||
## Example Usage | ||
|
||
``` | ||
resource "aws_sns_topic" "topic" { | ||
name = "topic" | ||
} | ||
``` | ||
|
||
## Argument Reference | ||
|
||
The following arguments are supported: | ||
|
||
* `name` - (Required) The SNS topic's name. | ||
|
||
## Attribute Reference | ||
|
||
The following attributes are exported: | ||
|
||
* `name` - The name of the topic. | ||
* `arn` - The ARN assigned by AWS to this topic. |
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