forked from Azure/avdaccelerator
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request Azure#494 from jensheerin/Terraform-AVDALZ-updates
update to docs
- Loading branch information
Showing
3 changed files
with
70 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
23 changes: 19 additions & 4 deletions
23
workload/terraform/example/gamedevwm/packer/variables.auto.pkrvars.hcl
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,19 @@ | ||
image_offer = "office-365" | ||
image_publisher = "MicrosoftWindowsDesktop" | ||
image_sku = "win10-22h2-avd-m365-g2" | ||
image_version = "latest" | ||
/* | ||
This HCL code block sets the variables for creating a custom image using Packer. You may modify the values of the variables to suit your needs. | ||
The variables include: | ||
- image_offer: The offer of the image to use. | ||
- image_publisher: The publisher of the image to use. | ||
- image_sku: The SKU of the image to use. | ||
- image_version: The version of the image to use. | ||
- vm_size: The size of the virtual machine to use. | ||
- resource_group_name: The name of the resource group to use. | ||
- region: The region where the resource group and virtual machine will be created. | ||
*/ | ||
|
||
image_offer = "office-365" | ||
image_publisher = "MicrosoftWindowsDesktop" | ||
image_sku = "win11-22h2-avd-m365" | ||
image_version = "latest" | ||
vm_size = "Standard_NV12ads_A10_v5" | ||
resource_group_name = "gamedev-image-rg" | ||
region = "southcentralus" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters