Skip to content

Commit

Permalink
fix variable information
Browse files Browse the repository at this point in the history
fix the variables for C4 and N4 as not required to manage min cpu
  • Loading branch information
kevinbleckmann committed Oct 8, 2024
1 parent 2bde21d commit cca1ac8
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
2 changes: 2 additions & 0 deletions examples/gcp-linux-tdx-vm/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ module "linux_vm" {
enable_confidential_compute = var.enable_confidential_compute
confidential_instance_type = var.confidential_instance_type
on_host_maintenance = "TERMINATE"
machine_type = "c3-standard-4"


access_config = [{
nat_ip = null
Expand Down
3 changes: 2 additions & 1 deletion examples/gcp-linux-vm/variables.tf
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
variable "project" {
type = string
description = "The ID of the project in which the resource resides."
}
}

5 changes: 2 additions & 3 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,8 @@ locals {
"c3": "Intel Sapphire Rapids",
"m3": "Intel Ice Lake",
"c2": "Intel Cascade Lake"
"n4": "Intel Emerald Rapids"
"c4": "Intel Emerald Rapids
"n1": null
"n4": null
"c4": null
"m1": null
"m2": null
"e2": null
Expand Down

0 comments on commit cca1ac8

Please sign in to comment.