vars.tf 895 B

123456789101112131415161718192021222324
  1. variable "tags" {
  2. description = "Tags to add to the resource (in addition to global standard tags)"
  3. type = map
  4. default = { }
  5. }
  6. variable "trusted_ips" { type = list(string) }
  7. variable "xdr_interconnect" { type = list(string) }
  8. variable "nga_pop" { type = list(string) }
  9. variable "afs_azure_pop" { type = list(string) }
  10. variable "afs_pop" { type = list(string) }
  11. variable "proxy" { type = string }
  12. variable "salt_master" { type = string }
  13. variable "cidr_map" { type = map }
  14. variable "dns_info" { type = map }
  15. variable "standard_tags" { type = map }
  16. variable "environment" { type = string }
  17. variable "aws_region" { type = string }
  18. variable "aws_partition" { type = string }
  19. variable "aws_partition_alias" { type = string }
  20. variable "aws_account_id" { type = string }
  21. variable "common_services_account" { type = string }
  22. variable "instance_termination_protection" { type = bool }