vars.tf 980 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. variable "cidr" {
  2. description = "The CIDR Block for the VPC"
  3. type = string
  4. }
  5. variable "name" {
  6. description = "The name for the VPC"
  7. type = string
  8. }
  9. variable "tags" {
  10. description = "Tags to add to the resource (in addition to global standard tags)"
  11. type = map
  12. default = { }
  13. }
  14. # ----------------------------------
  15. # Below this line are variables inherited from higher levels, so they
  16. # do not need to be explicitly passed to this module.
  17. variable "standard_tags" {
  18. type = map
  19. }
  20. variable "inside_domain" {
  21. type = string
  22. }
  23. variable "aws_region" {
  24. type = string
  25. }
  26. #variable "environment_vars" {
  27. # description = "Environment Vars"
  28. # type = map
  29. #}
  30. #
  31. #variable "partition_vars" {
  32. # description = "Partition Vars"
  33. # type = map
  34. #}
  35. #
  36. #variable "region_vars" {
  37. # description = "Region Vars"
  38. # type = map
  39. #}
  40. #
  41. #variable "account_vars" {
  42. # description = "Account Vars"
  43. # type = map
  44. #}