Getting information about a DNS zone
- In the management console
, select the folder containing your DNS zone. - Go to Cloud DNS.
- In the left-hand panel, select
Zones. - Select the DNS zone you need.
- Navigate to the Overview tab.
- You will see DNS zone details on the Overview page.
If you do not have the Yandex Cloud CLI yet, install and initialize it.
The folder used by default is the one specified when creating the CLI profile. To change the default folder, use the yc config set folder-id <folder_ID> command. You can also specify a different folder for any command using --folder-name or --folder-id. If you access a resource by its name, the search will be limited to the default folder. If you access a resource by its ID, the search will be global, i.e., through all folders based on access permissions.
To get a DNS zone ID or name, retrieve a list of zones in the folder.
-
See the description of the CLI command for getting DNS zone information:
yc dns zone get --help -
To get DNS zone details, run the following command with its name or ID specified:
yc dns zone get <DNS_zone_name>Result:
id: dns6oh57qm9n******** folder_id: f01derqpemb4******** created_at: "2023-11-02T08:34:58.493Z" name: example.com. zone: example-zone-name public_visibility: {}
With Terraform
Terraform is distributed under the Business Source License
For more information about the provider resources, see the relevant documentation on the Terraform
If you do not have Terraform yet, install it and configure the Yandex Cloud provider.
To get DNS zone information using Terraform:
-
Add the
dataandoutputsections to the Terraform configuration file:data "yandex_dns_zone" "my_zone" { dns_zone_id = "<DNS_zone_ID>" } output "public" { value = data.yandex_dns_zone.my_zone.public }Where:
data "yandex_dns_zone": Description of the DNS zone as a data source:dns_zone_id: DNS zone ID.
output "zone": Output variable with the DNS zone type information:value: Return value.
You can replace
publicwith another variable to get the information you need. To learn more about theyandex_dns_zonedata source properties, see this Terraform provider guide. -
Create the resources:
-
In the terminal, navigate to the configuration file directory.
-
Make sure the configuration is correct using this command:
terraform validateIf the configuration is valid, you will get this message:
Success! The configuration is valid. -
Run this command:
terraform planYou will see a list of resources and their properties. No changes will be made at this step. Terraform will show any errors in the configuration.
-
Apply the configuration changes:
terraform apply -
Type
yesand press Enter to confirm the changes.
Terraform will create all required resources and display their output variables. To check the results, run this command:
terraform outputResult:
public = false -
To get DNS zone details, use the get REST API method for the DnsZone resource or the DnsZoneService/Get gRPC API call.