variable "vpc_cidr_block" {
  description = "CIDR block for the VPC"
  type        = string
  default     = "10.0.0.0/16"
}

variable "vpc_name" {
  description = "Tag for the VPC name"
  type        = string
  default     = "readonly-vpc"
}
