@@ -8,13 +8,13 @@ variable "create_office_site" {
88variable "office_site_name" {
99 description = " The office site name."
1010 type = string
11- default = " "
11+ default = null
1212}
1313
1414variable "cidr_block" {
1515 description = " Workspace Corresponds to the Security Office Network of IPv4 Segment."
1616 type = string
17- default = " "
17+ default = null
1818}
1919
2020variable "desktop_access_type" {
@@ -69,25 +69,25 @@ variable "create_user" {
6969variable "end_user_id" {
7070 description = " The Username. The custom setting is composed of lowercase letters, numbers and underscores, and the length is 3~24 characters."
7171 type = string
72- default = " "
72+ default = null
7373}
7474
7575variable "user_email" {
7676 description = " The email of the user email."
7777 type = string
78- default = " "
78+ default = null
7979}
8080
8181variable "user_phone" {
8282 description = " The phone of the mobile phone number."
8383 type = string
84- default = " "
84+ default = null
8585}
8686
8787variable "user_password" {
8888 description = " The password of the user password."
8989 type = string
90- default = " "
90+ default = null
9191}
9292
9393variable "user_status" {
@@ -106,7 +106,7 @@ variable "create_policy_group" {
106106variable "policy_group_name" {
107107 description = " The name of policy group."
108108 type = string
109- default = " "
109+ default = null
110110}
111111
112112variable "policy_clipboard" {
@@ -148,7 +148,7 @@ variable "authorize_security_policy_rules" {
148148variable "domain_list" {
149149 description = " The list of domain."
150150 type = string
151- default = " "
151+ default = null
152152}
153153
154154variable "html_access" {
@@ -172,13 +172,13 @@ variable "visual_quality" {
172172variable "watermark_transparency" {
173173 description = " The watermark transparency. Valid values: DARK, LIGHT, MIDDLE."
174174 type = string
175- default = " DARK "
175+ default = null
176176}
177177
178178variable "watermark_type" {
179179 description = " The type of watemark. Valid values: EndUserId, HostName."
180180 type = string
181- default = " HostName "
181+ default = null
182182}
183183
184184# alicloud_ecd_desktop
@@ -191,31 +191,31 @@ variable "create_desktop" {
191191variable "desktop_name" {
192192 description = " The desktop name of the Desktop."
193193 type = string
194- default = " "
194+ default = null
195195}
196196
197197variable "user_id" {
198198 description = " The desktop end user id of the Desktop.It will be ignored when create_user = true"
199199 type = string
200- default = " "
200+ default = null
201201}
202202
203203variable "bundle_id" {
204204 description = " The bundle id of the Desktop."
205205 type = string
206- default = " "
206+ default = null
207207}
208208
209209variable "office_site_id" {
210210 description = " The ID of the Simple Office Site."
211211 type = string
212- default = " "
212+ default = null
213213}
214214
215215variable "policy_group_id" {
216216 description = " The policy group id of the Desktop.It will be ignored when create_policy_group = true"
217217 type = string
218- default = " "
218+ default = null
219219}
220220
221221variable "amount" {
@@ -239,13 +239,13 @@ variable "auto_renew" {
239239variable "desktop_type" {
240240 description = " The desktop type of the Desktop."
241241 type = string
242- default = " "
242+ default = null
243243}
244244
245245variable "host_name" {
246246 description = " The hostname of the Desktop."
247247 type = string
248- default = " "
248+ default = null
249249}
250250
251251variable "payment_type" {
@@ -311,7 +311,7 @@ variable "create_network_package" {
311311variable "bandwidth" {
312312 description = " The bandwidth of package public network bandwidth peak. Valid values: 1~200. Unit:Mbps."
313313 type = string
314- default = " "
314+ default = null
315315}
316316
317317# alicloud_ecd_nas_file_system
@@ -324,7 +324,7 @@ variable "create_nas_file_system" {
324324variable "nas_file_system_description" {
325325 description = " The description of nas file system."
326326 type = string
327- default = " "
327+ default = null
328328}
329329
330330variable "mount_target_domain" {
@@ -342,7 +342,7 @@ variable "reset" {
342342variable "nas_file_system_name" {
343343 description = " The name of nas file system."
344344 type = string
345- default = " "
345+ default = null
346346}
347347# alicloud_ecd_image
348348variable "create_image" {
@@ -354,17 +354,17 @@ variable "create_image" {
354354variable "image_name" {
355355 description = " The name of the image."
356356 type = string
357- default = " "
357+ default = null
358358}
359359
360360variable "image_description" {
361361 description = " The description of the image."
362362 type = string
363- default = " "
363+ default = null
364364}
365365
366366variable "desktop_id" {
367367 description = " The desktop id of the desktop.It will be ignored when create_desktop = true"
368368 type = string
369- default = " "
370- }
369+ default = null
370+ }
0 commit comments