github.com/filecoin-project/bacalhau@v0.3.23-0.20230228154132-45c989550ace/dashboard/terraform/variables.tf (about)

     1  variable "api_image" {
     2    type = string
     3  }
     4  variable "frontend_image" {
     5    type = string
     6  }
     7  variable "gcp_project" {
     8    type = string
     9  }
    10  variable "region" {
    11    type = string
    12  }
    13  variable "zone" {
    14    type = string
    15  }
    16  variable "machine_type" {
    17    type = string
    18  }
    19  variable "boot_disk_size_gb" {
    20    type    = number
    21    default = 100
    22  }
    23  variable "volume_size_gb" {
    24    type = number
    25    default = 100
    26  }
    27  variable "ingress_cidrs" {
    28    type    = set(string)
    29    default = []
    30  }
    31  variable "ssh_access_cidrs" {
    32    type    = set(string)
    33    default = []
    34  }