vars.tf 539 B

12345678910111213141516171819202122
  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 "standard_tags" { type = map }
  16. variable "inside_domain" { type = string }
  17. variable "aws_region" { type = string }
  18. variable "aws_account_id" { type = string }
  19. variable "aws_partition" { type = string }