Added code for create-vm-scaleset-network-disks-hcl

This commit is contained in:
Tom Archer
2021-07-28 09:56:18 -07:00
parent ef2d32ca99
commit b4528513d2
7 changed files with 271 additions and 26 deletions

View File

@ -1,4 +1,4 @@
# Create Azure resource group
# Azure resource group
This template deploys an Azure resource group.
@ -18,27 +18,4 @@ This template deploys an Azure resource group.
## Example
```bash
terraform plan -out main.tfplan
Terraform used the selected providers to generate the following execution plan. Resource actions are indicated with the following symbols:
+ create
Terraform will perform the following actions:
# azurerm_resource_group.rg will be created
+ resource "azurerm_resource_group" "rg" {
+ id = (known after apply)
+ location = "eastus"
+ name = "sample-dev-rg"
}
Plan: 1 to add, 0 to change, 0 to destroy.
────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
Saved the plan to: main.tfplan
To perform exactly these actions, run the following command to apply:
terraform apply "main.tfplan"
```
To see how to run this example, see [https://docs.microsoft.com/azure/developer/terraform/create-resource-group]