vars.tf 1.0 KB

12345678910111213141516171819202122232425262728
  1. variable "security_vpc" { type = string }
  2. variable "azs" { type = list(any) }
  3. variable "subnet_id_map" { type = map(any) }
  4. variable "tags" { type = map(any) }
  5. variable "interconnects_instance_type" { type = string }
  6. variable "interconnects_key_name" { type = string }
  7. variable "interconnects_count" { type = number }
  8. # Required for DNS module
  9. variable "dns_info" { type = map(any) }
  10. variable "cidr_map" { type = map(any) }
  11. variable "instance_termination_protection" { type = bool }
  12. variable "standard_tags" { type = map(any) }
  13. variable "aws_marketplace_ubuntu_owner_id" { type = string }
  14. variable "environment" { type = string }
  15. variable "trusted_ips" { type = list(any) }
  16. variable "aws_region" { type = string }
  17. variable "aws_partition" { type = string }
  18. variable "aws_partition_alias" { type = string }
  19. variable "aws_account_id" { type = string }
  20. variable "security_vpc_cidr" { type = string }
  21. variable "common_services_account" { type = string }
  22. # Legacy dns, remove this
  23. variable "dns_public" { type = map(any) }
  24. variable "dns_private" { type = map(any) }