infra_code

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

variables.tf (383B)


      1 variable "vultr_api_key" {
      2 	type = string
      3 	description = "Vultr PAT token"
      4 	default = ""
      5 }
      6 
      7 variable "pvt_key" {
      8 	type = string
      9 	description = "private ssh key"
     10 	default = "null"
     11 }
     12 
     13 variable "hostname" {
     14 	type = string
     15 	description = "hostname of system"
     16 	default = "test"
     17 }
     18 
     19 variable "instance_count" {
     20 	type = string
     21 	description = "number of instances to create"
     22 	default = "1"
     23 }