vars.tf 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. variable "instance_name" {
  2. type = string
  3. description = "Instance Name"
  4. default = "cisco-vpn"
  5. }
  6. variable "tags" {
  7. description = "Tags to add to the resource (in addition to global standard tags)"
  8. type = map
  9. default = { }
  10. }
  11. #variable "private_cidr" {
  12. # description = "The cidr of the private side subnet"
  13. # type = list(string)
  14. #}
  15. variable "instance_type" {
  16. type = string
  17. default = "c5.large"
  18. }
  19. variable "instance_tags" {
  20. type = map
  21. default = {}
  22. }
  23. variable "azs" { type = list(string) }
  24. variable "private_subnets" { type = list(string) }
  25. variable "public_subnets" { type = list(string) }
  26. variable "vpc_id" { type = string }
  27. variable "cidr_map" { type = map }
  28. variable "dns_info" { type = map }
  29. variable "dns_servers" { type = list(string) }
  30. variable "standard_tags" { type = map }
  31. variable "environment" { type = string }
  32. variable "aws_region" { type = string }
  33. variable "aws_partition" { type = string }
  34. variable "aws_partition_alias" { type = string }
  35. variable "common_services_account" { type = string }
  36. variable "instance_termination_protection" { type = bool }