Add examples for Azure Disk Encryption Extension

This commit is contained in:
Yichun Ma
2022-06-22 21:49:51 +08:00
parent 742b875490
commit aae3e0fbec
9 changed files with 388 additions and 0 deletions

View File

@ -0,0 +1,15 @@
variable "location" {
type = string
description = "Location where resources will be created"
}
variable "vm_public_key" {
type = string
description = "Public key of the Virtual Machine"
}
variable "name_prefix" {
type = string
default = "tftest"
description = "Prefix of the resource name"
}