infra_code

infrastructure-as-code
git clone git://git.pyratebeard.net/infra_code.git
Log | Files | Refs | README

variables.tf (492B)


      1 # vars for homelab
      2 
      3 variable "vm_name" {
      4 	type = string
      5 	description = "hostname"
      6 	default = "testvm"
      7 }
      8 
      9 variable "vm_vcpus" {
     10 	type = string
     11 	description = "number of vcpus"
     12 	default = 2
     13 }
     14 
     15 variable "vm_mem" {
     16 	type = string
     17 	description = "amount of memory"
     18 	default = "2048"
     19 }
     20 
     21 variable "vm_size" {
     22 	type = string
     23 	description = "capacity of disk"
     24 	default = "8589934592"
     25 }
     26 
     27 #variable "instance_count" {
     28 #	type = string
     29 #	description = "Number of Vault nodes to create"
     30 #	default = "1"
     31 #}