You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: google-beta/services/workstations/resource_workstations_workstation_config.go
+46Lines changed: 46 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -478,6 +478,12 @@ A duration in seconds with up to nine fractional digits, ending with 's'. Exampl
478
478
Please refer to the field 'effective_labels' for all of the labels present on the resource.`,
479
479
Elem: &schema.Schema{Type: schema.TypeString},
480
480
},
481
+
"max_usable_workstations": {
482
+
Type: schema.TypeInt,
483
+
Computed: true,
484
+
Optional: true,
485
+
Description: `Maximum number of workstations under this configuration a user can have workstations.workstation.use permission on. Only enforced on CreateWorkstation API calls on the user issuing the API request.`,
486
+
},
481
487
"persistent_directories": {
482
488
Type: schema.TypeList,
483
489
Computed: true,
@@ -745,6 +751,12 @@ func resourceWorkstationsWorkstationConfigCreate(d *schema.ResourceData, meta in
@@ -744,6 +746,10 @@ The following arguments are supported:
744
746
(Optional)
745
747
Disables support for plain TCP connections in the workstation. By default the service supports TCP connections via a websocket relay. Setting this option to true disables that relay, which prevents the usage of services that require plain tcp connections, such as ssh. When enabled, all communication must occur over https or wss.
746
748
749
+
*`max_usable_workstations` -
750
+
(Optional)
751
+
Maximum number of workstations under this configuration a user can have workstations.workstation.use permission on. Only enforced on CreateWorkstation API calls on the user issuing the API request.
752
+
747
753
*`allowed_ports` -
748
754
(Optional)
749
755
A list of port ranges specifying single ports or ranges of ports that are externally accessible in the workstation. Allowed ports must be one of 22, 80, or within range 1024-65535. If not specified defaults to ports 22, 80, and ports 1024-65535.
0 commit comments