Add Shielded VM config option to compute-vm (#111)

* Add shielded config option to compute-vm

* Update CHANGELOG
This commit is contained in:
Julio Castillo
2020-07-09 08:09:47 +02:00
committed by GitHub
parent 4beedc5ba8
commit 569e52e12a
4 changed files with 23 additions and 2 deletions

View File

@@ -218,3 +218,13 @@ variable "zone" {
description = "Compute zone."
type = string
}
variable "shielded_config" {
description = "Shielded VM configuration of the instances."
type = object({
enable_secure_boot = bool
enable_vtpm = bool
enable_integrity_monitoring = bool
})
default = null
}