variable "subnet_id" { type = string } variable "security_group_ids" { type = list } variable "tags" { description = "Tags to add to the resource (in addition to global standard tags)" type = map default = { } } # ---------------------------------- # Below this line are variables inherited from higher levels, so they # do not need to be explicitly passed to this module. variable "create_test_instance" { type = bool } variable "aws_marketplace_ubuntu_owner_id" { type = string } variable "test_instance_key_name" { type = string } variable "dns_info" { type = map } variable "standard_tags" { type = map } variable "environment" { type = string } variable "aws_region" { type = string } variable "aws_partition" { type = string }