vars.tf 500 B

1234567891011121314151617181920212223242526272829303132
  1. variable "tags" { type = map(any) }
  2. variable "nat_public_ips" { type = list(any) }
  3. variable "instance_name" {
  4. description = "Hostname, DNS entry, etc."
  5. type = string
  6. }
  7. variable "vpc_id" {
  8. type = string
  9. }
  10. variable "private_subnets" {
  11. type = list(string)
  12. }
  13. variable "public_subnets" {
  14. type = list(string)
  15. }
  16. variable "proxy_public_ip" {
  17. type = string
  18. }
  19. variable "instance_tags" {
  20. description = "Tags for the instance only."
  21. type = map(string)
  22. default = {}
  23. }