Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DocFix: dns services #3462

Merged
merged 1 commit into from
Dec 23, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion website/docs/d/dns_permitted_networks.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ data "ibm_dns_permitted_networks" "test" {
## Argument reference
Review the argument reference that you can specify for your data source.

- `instance_id` - (Required, String) The ID of the private DNS service instance where you created permitted networks.
- `instance_id` - (Required, String) The GUID of the private DNS service instance where you created permitted networks.
- `zone_id` - (Required, String) The ID of the zone where you added the permitted networks.

## Attribute reference
Expand Down
2 changes: 1 addition & 1 deletion website/docs/d/dns_resource_records.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ data "ibm_dns_resource_records" "ds_pdns_resource_records" {
## Argument reference
Review the argument reference that you can specify for your data source.

- `instance_id` - (Required, String) The ID of the private DNS service instance.
- `instance_id` - (Required, String) The GUID of the private DNS service instance.
- `zone_id` - (Required, String) The ID of the zone that you added to the private DNS service instance.

## Attribute reference
Expand Down
2 changes: 1 addition & 1 deletion website/docs/d/dns_zones.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ data "ibm_dns_zones" "ds_pdnszones" {
## Argument reference
Review the argument reference that you can specify for your data source.

- `instance_id` - (Required, String) The ID of the private DNS service instance.
- `instance_id` - (Required, String) The GUID of the private DNS service instance.

## Attribute reference
In addition to the argument reference list, you can access the following attribute references after your data source is created.
Expand Down
2 changes: 1 addition & 1 deletion website/docs/r/dns_permitted_network.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ resource "ibm_dns_permitted_network" "test-pdns-permitted-network-nw" {
## Argument reference
Review the argument reference that you can specify for your resource.

- `instance_id` - (Required, String) The ID of the IBM Cloud DNS service instance where you want to add a permitted network.
- `instance_id` - (Required, String) The GUID of the IBM Cloud DNS service instance where you want to add a permitted network.
- `type` - (Required, String) The type of permitted network that you want to add. Supported values are `vpc`.
- `vpc_crn` - (Required, String) The CRN of the VPC that you want to add as a permitted network.
- `zone_id` - (Required, String) The ID of the private DNS zone where you want to add the permitted network.
Expand Down
2 changes: 1 addition & 1 deletion website/docs/r/dns_zone.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ resource "ibm_dns_zone" "pdns-1-zone" {
Review the argument reference that you can specify for your resource.

- `description` - (Optional, String) The description of the DNS zone.
- `instance_id` - (Required, String) The ID of the IBM Cloud DNS service instance where you want to create a DNS zone.
- `instance_id` - (Required, String) The GUID of the IBM Cloud DNS service instance where you want to create a DNS zone.
- `name` - (Required, String) The name of the DNS zone that you want to create.
- `label` - (Optional, String) The label of the DNS zone.

Expand Down