infra_code

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

infra.tf (228B)


      1 resource "vultr_instance" "zshtest" {
      2 	os_id = 447
      3 	region = "lhr"
      4 	plan = "vc2-1c-1gb"
      5 	count = var.instance_count
      6 	hostname = "${var.hostname}0${count.index + 1}"
      7 	ssh_key_ids = [
      8 		"91abc987-5897-4661-8249-f1286693914e"
      9 	]
     10 }