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: website/docs/r/notebooks_instance.html.markdown
+41-3Lines changed: 41 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -199,13 +199,26 @@ The following arguments are supported:
199
199
permission to use the instance. If not specified,
200
200
the Compute Engine default service account is used.
201
201
202
+
*`service_account_scopes` -
203
+
(Optional)
204
+
Optional. The URIs of service account scopes to be included in Compute Engine instances.
205
+
If not specified, the following scopes are defined:
206
+
-https://www.googleapis.com/auth/cloud-platform
207
+
-https://www.googleapis.com/auth/userinfo.email
208
+
202
209
*`accelerator_config` -
203
210
(Optional)
204
211
The hardware accelerator used on this instance. If you use accelerators,
205
212
make sure that your configuration has enough vCPUs and memory to support the
206
213
machineType you have selected.
207
214
Structure is documented below.
208
215
216
+
*`shielded_instance_config` -
217
+
(Optional)
218
+
A set of Shielded Instance options. Check [Images using supported Shielded VM features]
219
+
Not all combinations are valid
220
+
Structure is documented below.
221
+
209
222
*`install_gpu_driver` -
210
223
(Optional)
211
224
Whether the end user authorizes Google Cloud to install GPU driver
@@ -256,11 +269,11 @@ The following arguments are supported:
256
269
257
270
*`no_public_ip` -
258
271
(Optional)
259
-
no public IP will be assigned to this instance.
272
+
No public IP will be assigned to this instance.
260
273
261
274
*`no_proxy_access` -
262
275
(Optional)
263
-
the notebook instance will not register with the proxy..
276
+
The notebook instance will not register with the proxy..
264
277
265
278
*`network` -
266
279
(Optional)
@@ -277,6 +290,10 @@ The following arguments are supported:
277
290
Labels to apply to this instance. These can be later modified by the setLabels method.
278
291
An object containing a list of "key": value pairs. Example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.
279
292
293
+
*`tags` -
294
+
(Optional)
295
+
The Compute Engine tags to add to runtime.
296
+
280
297
*`metadata` -
281
298
(Optional)
282
299
Custom metadata to apply to this instance.
@@ -301,12 +318,33 @@ The `accelerator_config` block supports:
301
318
*`type` -
302
319
(Required)
303
320
Type of this accelerator.
304
-
Possible values are `ACCELERATOR_TYPE_UNSPECIFIED`, `NVIDIA_TESLA_K80`, `NVIDIA_TESLA_P100`, `NVIDIA_TESLA_V100`, `NVIDIA_TESLA_P4`, `NVIDIA_TESLA_T4`, `NVIDIA_TESLA_T4_VWS`, `NVIDIA_TESLA_P100_VWS`, `NVIDIA_TESLA_P4_VWS`, `TPU_V2`, and `TPU_V3`.
321
+
Possible values are `ACCELERATOR_TYPE_UNSPECIFIED`, `NVIDIA_TESLA_K80`, `NVIDIA_TESLA_P100`, `NVIDIA_TESLA_V100`, `NVIDIA_TESLA_P4`, `NVIDIA_TESLA_T4`, `NVIDIA_TESLA_T4_VWS`, `NVIDIA_TESLA_P100_VWS`, `NVIDIA_TESLA_P4_VWS`, `NVIDIA_TESLA_A100`, `TPU_V2`, and `TPU_V3`.
305
322
306
323
*`core_count` -
307
324
(Required)
308
325
Count of cores of this accelerator.
309
326
327
+
The `shielded_instance_config` block supports:
328
+
329
+
*`enable_integrity_monitoring` -
330
+
(Optional)
331
+
Defines whether the instance has integrity monitoring enabled. Enables monitoring and attestation of the
332
+
boot integrity of the instance. The attestation is performed against the integrity policy baseline.
333
+
This baseline is initially derived from the implicitly trusted boot image when the instance is created.
334
+
Enabled by default.
335
+
336
+
*`enable_secure_boot` -
337
+
(Optional)
338
+
Defines whether the instance has Secure Boot enabled. Secure Boot helps ensure that the system only runs
339
+
authentic software by verifying the digital signature of all boot components, and halting the boot process
340
+
if signature verification fails.
341
+
Disabled by default.
342
+
343
+
*`enable_vtpm` -
344
+
(Optional)
345
+
Defines whether the instance has the vTPM enabled.
0 commit comments