vars.tf 847 B

12345678910111213141516171819202122232425
  1. variable "dns_name" {
  2. type = string
  3. description = "Used for the certificate"
  4. }
  5. variable "tags" {
  6. description = "Tags to add to the resource (in addition to global standard tags)"
  7. type = map
  8. default = { }
  9. }
  10. variable "azs" { type = list(string) }
  11. variable "private_subnets" { type = list(string) }
  12. variable "public_subnets" { type = list(string) }
  13. variable "vpc_id" { type = string }
  14. variable "cidr_map" { type = map }
  15. variable "dns_info" { type = map }
  16. variable "dns_servers" { type = list(string) }
  17. variable "standard_tags" { type = map }
  18. variable "environment" { type = string }
  19. variable "aws_region" { type = string }
  20. variable "aws_partition" { type = string }
  21. variable "aws_partition_alias" { type = string }
  22. variable "common_services_account" { type = string }
  23. variable "instance_termination_protection" { type = bool }