-
Notifications
You must be signed in to change notification settings - Fork 9.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
61e464f
commit 5089f69
Showing
4 changed files
with
49 additions
and
3 deletions.
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
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
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
35 changes: 35 additions & 0 deletions
35
website/docs/r/service_discovery_public_dns_namespace.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,35 @@ | ||
--- | ||
layout: "aws" | ||
page_title: "AWS: aws_service_discovery_public_dns_namespace" | ||
sidebar_current: "docs-aws-resource-service-discovery-public-dns-namespace" | ||
description: |- | ||
Provides a Service Discovery Public DNS Namespace resource. | ||
--- | ||
|
||
# aws_service_discovery_public_dns_namespace | ||
|
||
Provides a Service Discovery Public DNS Namespace resource. | ||
|
||
## Example Usage | ||
|
||
```hcl | ||
resource "aws_service_discovery_public_dns_namespace" "example" { | ||
name = "hoge.example.com" | ||
description = "example" | ||
} | ||
``` | ||
|
||
## Argument Reference | ||
|
||
The following arguments are supported: | ||
|
||
* `name` - (Required) The name of the namespace. | ||
* `description` - (Optional) The description that you specify for the namespace when you create it. | ||
|
||
## Attributes Reference | ||
|
||
The following attributes are exported: | ||
|
||
* `id` - The ID of a namespace. | ||
* `arn` - The ARN that Amazon Route 53 assigns to the namespace when you create it. | ||
* `hosted_zone` - The ID for the hosted zone that Amazon Route 53 creates when you create a namespace. |