Skip to content

Commit 1466a02

Browse files
committed
feat: make nat_ip of access_config optional
1 parent 1b657fe commit 1466a02

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/instance_template/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -375,7 +375,7 @@ variable "confidential_instance_type" {
375375
variable "access_config" {
376376
description = "Access configurations, i.e. IPs via which the VM instance can be accessed via the Internet."
377377
type = list(object({
378-
nat_ip = string
378+
nat_ip = optional(string)
379379
network_tier = string
380380
}))
381381
default = []

0 commit comments

Comments
 (0)