vars.tf 613 B

123456789101112131415161718192021222324
  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. # Inherited
  15. variable "dns_servers" { type = list(string) }
  16. variable "dns_info" { type = map }
  17. variable "cidr_map" { type = map }
  18. variable "standard_tags" { type = map }
  19. variable "aws_region" { type = string }
  20. variable "aws_account_id" { type = string }
  21. variable "aws_partition" { type = string }