1- variable "resource_group_name_prefix " {
2- default = " rg "
3- description = " Prefix of the resource group name that's combined with a random ID so name is unique in your Azure subscription ."
1+ variable "resource_group_location " {
2+ default = " eastus "
3+ description = " Location of the resource group."
44}
55
6- variable "resource_group_location" {
7- default = " eastus"
8- description = " Location of the resource group."
6+ variable "rg" {
7+ type = string
8+ default = " rg-avd-compute"
9+ description = " Name of the Resource group in which to deploy session host"
910}
11+
1012variable "rg_name" {
1113 type = string
12- default = " avd-resources-rg"
13- 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"
1428}
1529
1630variable "deploy_location" {
@@ -37,6 +51,13 @@ variable "ad_vnet" {
3751 description = " Name of domain controller vnet"
3852}
3953
54+ variable "rfc3339" {
55+ type = string
56+ default = " 2022-03-30T12:43:13Z"
57+ description = " Registration token expiration"
58+ }
59+
60+
4061variable "dns_servers" {
4162 type = list (string )
4263 default = [" 10.0.1.4" , " 168.63.129.16" ]
@@ -45,12 +66,12 @@ variable "dns_servers" {
4566
4667variable "vnet_range" {
4768 type = list (string )
48- default = [" 10.1 .0.0/16" ]
69+ default = [" 10.2 .0.0/16" ]
4970 description = " Address range for deployment VNet"
5071}
5172variable "subnet_range" {
5273 type = list (string )
53- default = [" 10.1 .0.0/24" ]
74+ default = [" 10.2 .0.0/24" ]
5475 description = " Address range for session host subnet"
5576}
5677
@@ -63,8 +84,8 @@ variable "ad_rg" {
6384variable "avd_users" {
6485 description = " AVD users"
6586 default = [
66- " avduser01@infra.local " ,
67- " avduser01@infra.local "
87+ " avduser01@contoso.net " ,
88+ " avduser02@contoso.net "
6889 ]
6990}
7091
@@ -93,7 +114,7 @@ variable "domain_name" {
93114
94115variable "domain_user_upn" {
95116 type = string
96- default = " admin " # do not include domain name as this is appended
117+ default = " domainjoineruser " # do not include domain name as this is appended
97118 description = " Username for domain join (do not include domain name as this is appended)"
98119}
99120
@@ -149,8 +170,7 @@ variable "netapp_volume_path" {
149170variable "netapp_subnet_name" {
150171 default = " NetAppSubnet"
151172}
152-
153173variable "netapp_address" {
154- default = [" 10.1.1.0/24" ]
174+ default = [" 10.1.1.0/24" ]
155175 description = " Address range for NetApp Subnet"
156- }
176+ }
0 commit comments