Getting information about a DNS zone
- In the management console
, select the folder containing your DNS zone. - Select 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 installed yet, install and initialize it.
By default, the CLI uses the folder specified when creating the profile. To change the default folder, use the yc config set folder-id <folder_ID> command. You can also set a different folder for any specific command using the --folder-name or --folder-id parameter.
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. For more information about theyandex_dns_zonedata source variables, see the relevant provider documentation. -
Create the resources:
-
In the terminal, go to the directory where you edited the configuration file.
-
Make sure the configuration file is correct using this command:
terraform validateIf the configuration is correct, you will get this message:
Success! The configuration is valid. -
Run this command:
terraform planYou will see a detailed list of resources. No changes will be made at this step. If the configuration contains any errors, Terraform will show them.
-
Apply the changes:
terraform apply -
Type
yesand press Enter to confirm the changes.
Terraform will create the 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.