resolve comments

This commit is contained in:
Yichun Ma
2022-06-28 15:52:32 +08:00
parent bd01573941
commit e11e21b525
11 changed files with 14 additions and 11 deletions

View File

@ -21,7 +21,10 @@ resource "azurerm_windows_virtual_machine_scale_set" "example" {
name = "${var.name_prefix}-vmss"
resource_group_name = azurerm_resource_group.example.name
location = azurerm_resource_group.example.location
# Available skus for Confidential VMSS can be found at: https://docs.microsoft.com/azure/confidential-computing/confidential-vm-overview
sku = "Standard_DC2as_v5"
instances = 2
admin_username = "adminuser"
admin_password = var.admin_password

View File

@ -15,7 +15,7 @@ This template deploys an Azure confidential virtual machine scale set with guest
|-|-|
| `admin_password` | (Required) Admin password of the virtual machine scale set.|
| `location` | (Required) Azure Region in which to deploy these resources.|
| `name_prefix` | (Optional) Prefix of the resource name. Value defaults to: tftest|
| `name_prefix` | (Required) Prefix of the resource name.|
## Example

View File

@ -11,6 +11,5 @@ variable "location" {
variable "name_prefix" {
type = string
default = "tftest"
description = "Prefix of the resource name"
}