infra_code

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

variables.tf (293B)


      1 variable "hcloud_token" {
      2 	type = string
      3 	description = "hcloud api token"
      4 	default = ""
      5 }
      6 
      7 variable "hostname" {
      8 	type = string
      9 	description = "hostname of system"
     10 	default = "test"
     11 }
     12 
     13 variable "instance_count" {
     14 	type = string
     15 	description = "number of instances to create"
     16 	default = "1"
     17 }