github.com/openshift/installer@v1.4.17/upi/vsphere/vm/variables.tf (about)

     1  variable "ignition" {
     2    type    = string
     3    sensitive = true
     4    default = ""
     5  }
     6  
     7  variable "disk_thin_provisioned" {
     8    type = bool
     9  }
    10  
    11  variable "template_uuid" {
    12    type = string
    13  }
    14  
    15  variable "guest_id" {
    16    type = string
    17  }
    18  
    19  variable "resource_pool_id" {
    20    type = string
    21  }
    22  
    23  variable "folder_id" {
    24    type = string
    25  }
    26  
    27  variable "datastore_id" {
    28    type = string
    29  }
    30  
    31  variable "network_id" {
    32    type = string
    33  }
    34  
    35  variable "cluster_domain" {
    36    type = string
    37  }
    38  
    39  variable "datacenter_id" {
    40    type = string
    41  }
    42  
    43  variable "machine_cidr" {
    44    type = string
    45  }
    46  
    47  variable "memory" {
    48    type = string
    49  }
    50  
    51  variable "num_cpus" {
    52    type = string
    53  }
    54  
    55  variable "dns_addresses" {
    56    type = list(string)
    57  }
    58  
    59  variable "vmname" {
    60    type = string
    61  }
    62  
    63  variable "ipaddress" {
    64    type = string
    65  }