Skip to content

Commit 5e9b1c3

Browse files
committed
Fixed links
1 parent 32a5a8f commit 5e9b1c3

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

articles/dns/dns-get-started-terraform.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -32,25 +32,25 @@ In this article, you learn how to:
3232
## Implement the Terraform code
3333

3434
> [!NOTE]
35-
> The example code for this article is located in the [Azure Terraform GitHub repo](https://github.com/Azure/terraform/tree/master/quickstart/101-azurerm_dns_zone). See more [articles and sample code showing how to use Terraform to manage Azure resources](/azure/terraform)
35+
> The example code for this article is located in the [Azure Terraform GitHub repo](https://github.com/Azure/terraform/tree/master/quickstart/101-dns_zone). See more [articles and sample code showing how to use Terraform to manage Azure resources](/azure/terraform)
3636
3737
1. Create a directory in which to test and run the sample Terraform code and make it the current directory.
3838

39-
1. Create a file named `main.tf` and insert the following code:
39+
1. Create a file named `providers.tf` and insert the following code:
4040

41-
[!code-terraform[master](~/terraform_samples/quickstart/101-azurerm_dns_zone/main.tf)]
41+
[!code-terraform[master](~/terraform_samples/quickstart/101-dns_zone/providers.tf)]
4242

43-
1. Create a file named `outputs.tf` and insert the following code:
43+
1. Create a file named `main.tf` and insert the following code:
4444

45-
[!code-terraform[master](~/terraform_samples/quickstart/101-azurerm_dns_zone/outputs.tf)]
45+
[!code-terraform[master](~/terraform_samples/quickstart/101-dns_zone/main.tf)]
4646

47-
1. Create a file named `providers.tf` and insert the following code:
47+
1. Create a file named `variables.tf` and insert the following code:
4848

49-
[!code-terraform[master](~/terraform_samples/quickstart/101-azurerm_dns_zone/providers.tf)]
49+
[!code-terraform[master](~/terraform_samples/quickstart/101-dns_zone/variables.tf)]
5050

51-
1. Create a file named `variables.tf` and insert the following code:
51+
1. Create a file named `outputs.tf` and insert the following code:
5252

53-
[!code-terraform[master](~/terraform_samples/quickstart/101-azurerm_dns_zone/variables.tf)]
53+
[!code-terraform[master](~/terraform_samples/quickstart/101-dns_zone/outputs.tf)]
5454

5555
## Initialize Terraform
5656

0 commit comments

Comments
 (0)