We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5a7ec88 commit 2bf6b7bCopy full SHA for 2bf6b7b
AKS-Arc/create-clusters-terraform.md
@@ -62,7 +62,7 @@ az login
62
## Implement the Terraform code
63
64
1. Create a directory you can use to test the sample Terraform code, and make it your current directory.
65
-1. In the same directory, create a file named **providers.tf** and paste the following code:
+1. In the same directory, create a file named **providers.tf** and paste the following code and replace with your subscription ID.
66
67
```terraform
68
terraform {
@@ -79,7 +79,8 @@ az login
79
}
80
81
82
- provider "azurerm" {
+ provider "azurerm" {
83
+ subscription_id = "<Subscription_ID>"
84
features {
85
resource_group {
86
prevent_deletion_if_contains_resources = false
0 commit comments