Skip to content

Commit

Permalink
- Removed the Default Values for the vm_metadata_entries variable
Browse files Browse the repository at this point in the history
- Removed the Default Values for the network_interfaces variable
  • Loading branch information
scafeman committed Mar 7, 2024
1 parent 3ce6211 commit 1213b8a
Showing 1 changed file with 2 additions and 41 deletions.
43 changes: 2 additions & 41 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -103,29 +103,7 @@ variable "vm_metadata_entries" {
user_access = string
is_system = bool
}))
default = [
{
key = "Built By"
value = "Terraform"
type = "MetadataStringValue"
user_access = "READWRITE"
is_system = false
},
{
key = "Operating System"
value = "Ubuntu Linux (64-Bit)"
type = "MetadataStringValue"
user_access = "READWRITE"
is_system = false
},
{
key = "Server Role"
value = "Web Server"
type = "MetadataStringValue"
user_access = "READWRITE"
is_system = false
}
]
default = []
}

variable "disks_per_vm" {
Expand Down Expand Up @@ -154,24 +132,7 @@ variable "network_interfaces" {
ip = string
is_primary = bool
}))
default = [
{
type = "org"
adapter_type = "VMXNET3"
name = "Segment-01"
ip_allocation_mode = "POOL"
ip = ""
is_primary = true
},
{
type = "org"
adapter_type = "VMXNET3"
name = "Segment-02"
ip_allocation_mode = "POOL"
ip = ""
is_primary = false
}
]
default = []
}

variable "vm_ips_index_multiplier" {
Expand Down

0 comments on commit 1213b8a

Please sign in to comment.