vars.tf 890 B

12345678910111213141516171819202122
  1. variable security_vpc { type = string }
  2. variable azs { type = list }
  3. variable subnet_id_map { type = map }
  4. variable tags { type = map }
  5. variable interconnects_instance_type { type = string }
  6. variable interconnects_key_name { type = string }
  7. variable interconnects_count { type = number }
  8. variable "instance_termination_protection" { type = bool }
  9. variable "standard_tags" { type = map }
  10. variable "aws_marketplace_ubuntu_owner_id" { type = string }
  11. variable "environment" { type = string }
  12. variable "trusted_ips" { type = list }
  13. variable "aws_region" { type = string }
  14. variable "aws_partition" { type = string }
  15. variable "aws_partition_alias" { type = string }
  16. variable "aws_account_id" { type = string }
  17. variable "default_ami" { type = string }
  18. variable "dns_public" { type = map }
  19. variable "dns_private" { type = map }
  20. variable "security_vpc_cidr" { type = string }