1234567891011121314151617181920212223242526272829303132 |
- variable "tags" { type = map(any) }
- variable "nat_public_ips" { type = list(any) }
- variable "instance_name" {
- description = "Hostname, DNS entry, etc."
- type = string
- }
- variable "vpc_id" {
- type = string
- }
- variable "private_subnets" {
- type = list(string)
- }
- variable "public_subnets" {
- type = list(string)
- }
- variable "proxy_public_ip" {
- type = string
- }
- variable "instance_tags" {
- description = "Tags for the instance only."
- type = map(string)
- default = {}
- }
|