provision-eks-with-terraform / variables.tf
variables.tf
Raw
variable vpc_cidr_block {
    description = "AWS VPC cidr block the provisioned EKS cluster"
    default = ""
    type = string
}

variable private_subnet_cidr_blocks {}

variable public_subnet_cidr_blocks {}

variable env {}

variable my-ip {}