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
Description: `The self_link of the encryption key that is stored in Google Cloud KMS to encrypt this disk. Only one of kms_key_self_link and disk_encryption_key_raw may be set.`,
267
269
},
268
270
271
+
"guest_os_features": {
272
+
Type: schema.TypeList,
273
+
Optional: true,
274
+
AtLeastOneOf: bootDiskKeys,
275
+
ForceNew: true,
276
+
Computed: true,
277
+
Description: `A list of features to enable on the guest operating system. Applicable only for bootable images.`,
Copy file name to clipboardExpand all lines: mmv1/third_party/terraform/website/docs/r/compute_instance.html.markdown
+4
Original file line number
Diff line number
Diff line change
@@ -265,6 +265,8 @@ is desired, you will need to modify your state file manually using
265
265
*`mode` - (Optional) The mode in which to attach this disk, either `READ_WRITE`
266
266
or `READ_ONLY`. If not specified, the default is to attach the disk in `READ_WRITE` mode.
267
267
268
+
*`guest_os_features` - (optional) A list of features to enable on the guest operating system. Applicable only for bootable images. Read [Enabling guest operating system features](https://cloud.google.com/compute/docs/images/create-delete-deprecate-private-images#guest-os-features) to see a list of available options.
269
+
268
270
*`disk_encryption_key_raw` - (Optional) A 256-bit [customer-supplied encryption key]
encoded in [RFC 4648 base64](https://tools.ietf.org/html/rfc4648#section-4)
@@ -303,6 +305,8 @@ is desired, you will need to modify your state file manually using
303
305
*`labels` - (Optional) A set of key/value label pairs assigned to the disk. This
304
306
field is only applicable for persistent disks.
305
307
308
+
*`architecture` - (Optional) The architecture of the attached disk. Valid values are `ARM64` or `x86_64`.
309
+
306
310
*`resource_manager_tags` - (Optional) A tag is a key-value pair that can be attached to a Google Cloud resource. You can use tags to conditionally allow or deny policies based on whether a resource has a specific tag. This value is not returned by the API. In Terraform, this value cannot be updated and changing it will recreate the resource.
307
311
308
312
*`resource_policies` - (Optional) A list of self_links of resource policies to attach to the instance's boot disk. Modifying this list will cause the instance to recreate, so any external values are not set until the user specifies this field. Currently a max of 1 resource policy is supported.
0 commit comments