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,16 @@
variable "admin_password" {
type = string
sensitive = true
description = "Admin password of the virtual machine scale set"
}
variable "location" {
type = string
description = "Location where resources will be created"
}
variable "name_prefix" {
type = string
default = "tftest"
description = "Prefix of the resource name"
}