From c342a6439e35f5888942afc7b992bf3216e5b857 Mon Sep 17 00:00:00 2001 From: Bhomesh Date: Tue, 19 Nov 2024 02:44:54 +0530 Subject: [PATCH] fix: Updated the object-based configuration in variable.tf --- variables.tf | 37 ------------------------------------- 1 file changed, 37 deletions(-) diff --git a/variables.tf b/variables.tf index 4b55a1c..a749755 100644 --- a/variables.tf +++ b/variables.tf @@ -151,25 +151,6 @@ 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)) @@ -177,18 +158,6 @@ variable "network_interface" { } -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 @@ -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