Skip to content

Commit

Permalink
fix: Updated the object-based configuration in variable.tf
Browse files Browse the repository at this point in the history
  • Loading branch information
Bhomesh committed Nov 18, 2024
1 parent ea3a120 commit c342a64
Showing 1 changed file with 0 additions and 37 deletions.
37 changes: 0 additions & 37 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -151,44 +151,13 @@ variable "instance_count" {
description = "Number of instances to launch."
}

variable "source_dest_check" {
type = bool
default = true
description = "Controls if traffic is routed to the instance when the destination address does not match the instance. Used for NAT or VPNs."
}

variable "ipv6_address_count" {
type = number
default = null
description = "Number of IPv6 addresses to associate with the primary network interface. Amazon EC2 chooses the IPv6 addresses from the range of your subnet."
}

variable "ipv6_addresses" {
type = list(any)
default = null
description = "List of IPv6 addresses from the range of the subnet to associate with the primary network interface."
sensitive = true
}

variable "network_interface" {
description = "Customize network interfaces to be attached at instance boot time"
type = list(map(string))
default = []
}


variable "host_id" {
type = string
default = null
description = "The Id of a dedicated host that the instance will be assigned to. Use when an instance is to be launched on a specific dedicated host."
}

variable "cpu_core_count" {
type = string
default = null
description = "Sets the number of CPU cores for an instance."
}

variable "iam_instance_profile" {
type = string
default = null
Expand Down Expand Up @@ -268,12 +237,6 @@ variable "instance_metadata_tags_enabled" {
description = "Whether the metadata tag is available. Valid values include enabled or disabled. Defaults to enabled."
}

variable "hibernation" {
type = bool
default = false
description = "hibernate an instance, Amazon EC2 signals the operating system to perform hibernation."
}

variable "multi_attach_enabled" {
type = bool
default = false
Expand Down

0 comments on commit c342a64

Please sign in to comment.