From 4298fcfb8e7b5db9725a1fdb33a4fac8d417aa0f Mon Sep 17 00:00:00 2001 From: Moritz Sanft <58110325+msanft@users.noreply.github.com> Date: Thu, 4 Apr 2024 16:34:52 +0200 Subject: [PATCH] cli: add TF variable passthrough for GCP SEV-SNP variables --- cli/internal/terraform/variables.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cli/internal/terraform/variables.go b/cli/internal/terraform/variables.go index a83818260..f258a2d92 100644 --- a/cli/internal/terraform/variables.go +++ b/cli/internal/terraform/variables.go @@ -136,6 +136,8 @@ type GCPClusterVariables struct { CustomEndpoint string `hcl:"custom_endpoint" cty:"custom_endpoint"` // InternalLoadBalancer is true if an internal load balancer should be created. InternalLoadBalancer bool `hcl:"internal_load_balancer" cty:"internal_load_balancer"` + // CCTechnology is the confidential computing technology to use on the VMs. (`SEV` or `SEV_SNP`) + CCTechnology string `hcl:"cc_technology" cty:"cc_technology"` } // GetCreateMAA gets the CreateMAA variable.