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: mmv1/products/workstations/WorkstationConfig.yaml
+25
Original file line number
Diff line number
Diff line change
@@ -119,6 +119,12 @@ examples:
119
119
account_id: 'my-account'
120
120
workstation_cluster_name: 'workstation-cluster'
121
121
workstation_config_name: 'workstation-config'
122
+
- name: 'workstation_config_allowed_ports'
123
+
primary_resource_id: 'default'
124
+
min_version: 'beta'
125
+
vars:
126
+
workstation_cluster_name: 'workstation-cluster'
127
+
workstation_config_name: 'workstation-config'
122
128
parameters:
123
129
- name: 'workstationConfigId'
124
130
type: String
@@ -650,6 +656,25 @@ properties:
650
656
description: |
651
657
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.
652
658
min_version: 'beta'
659
+
- name: 'allowedPorts'
660
+
type: Array
661
+
default_from_api: true
662
+
description: |
663
+
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.
664
+
min_version: 'beta'
665
+
item_type:
666
+
type: NestedObject
667
+
properties:
668
+
- name: 'first'
669
+
type: Integer
670
+
description: |
671
+
Starting port number for the current range of ports. Valid ports are 22, 80, and ports within the range 1024-65535.
672
+
min_version: 'beta'
673
+
- name: 'last'
674
+
type: Integer
675
+
description: |
676
+
Ending port number for the current range of ports. Valid ports are 22, 80, and ports within the range 1024-65535.
0 commit comments