1+ variable "resource_group_location" {
2+ default = " eastus"
3+ description = " Location of the resource group."
4+ }
5+
6+ variable "rg" {
7+ type = string
8+ default = " rg-avd-compute"
9+ description = " Name of the Resource group in which to deploy session host"
10+ }
11+
112variable "rg_name" {
213 type = string
3- default = " avd-resources-rg"
4- description = " Name of the Resource group in which to deploy these resources"
14+ default = " rg-avd-resources"
15+ description = " Name of the Resource group in which to deploy service objects"
16+ }
17+
18+ variable "rg_stor" {
19+ type = string
20+ default = " rg-avd-storage"
21+ description = " Name of the Resource group in which to deploy storage"
22+ }
23+
24+ variable "rg_shared_name" {
25+ type = string
26+ default = " rg-shared-resources"
27+ description = " Name of the Resource group in which to deploy shared resources"
528}
629
730variable "deploy_location" {
831 type = string
9- default = " east us "
32+ default = " eastus "
1033 description = " The Azure Region in which all resources in this example should be created."
1134}
1235
@@ -28,6 +51,13 @@ variable "ad_vnet" {
2851 description = " Name of domain controller vnet"
2952}
3053
54+ variable "rfc3339" {
55+ type = string
56+ default = " 2022-03-30T12:43:13Z"
57+ description = " Registration token expiration"
58+ }
59+
60+
3161variable "dns_servers" {
3262 type = list (string )
3363 default = [" 10.0.1.4" , " 168.63.129.16" ]
@@ -36,12 +66,12 @@ variable "dns_servers" {
3666
3767variable "vnet_range" {
3868 type = list (string )
39- default = [" 10.1 .0.0/16" ]
69+ default = [" 10.2 .0.0/16" ]
4070 description = " Address range for deployment VNet"
4171}
4272variable "subnet_range" {
4373 type = list (string )
44- default = [" 10.1 .0.0/24" ]
74+ default = [" 10.2 .0.0/24" ]
4575 description = " Address range for session host subnet"
4676}
4777
@@ -54,8 +84,8 @@ variable "ad_rg" {
5484variable "avd_users" {
5585 description = " AVD users"
5686 default = [
57- " avduser01@infra.local " ,
58- " avduser01@infra.local "
87+ " avduser01@contoso.net " ,
88+ " avduser02@contoso.net "
5989 ]
6090}
6191
@@ -84,7 +114,7 @@ variable "domain_name" {
84114
85115variable "domain_user_upn" {
86116 type = string
87- default = " admin " # do not include domain name as this is appended
117+ default = " domainjoineruser " # do not include domain name as this is appended
88118 description = " Username for domain join (do not include domain name as this is appended)"
89119}
90120
@@ -140,8 +170,7 @@ variable "netapp_volume_path" {
140170variable "netapp_subnet_name" {
141171 default = " NetAppSubnet"
142172}
143-
144173variable "netapp_address" {
145- default = [" 10.1.1.0/24" ]
174+ default = [" 10.1.1.0/24" ]
146175 description = " Address range for NetApp Subnet"
147- }
176+ }
0 commit comments