-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvariables.tf
More file actions
30 lines (25 loc) · 740 Bytes
/
variables.tf
File metadata and controls
30 lines (25 loc) · 740 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
variable "libvirt_disk_path" {
description = "path for libvirt pool"
default = "/opt/kvm/pool1"
}
variable "ubuntu_20_10_img_url" {
description = "ubuntu 20.10 image"
#default = "https://cloud-images.ubuntu.com/groovy/current/groovy-server-cloudimg-amd64.img"
default = "/Users/josep/groovy-server-cloudimg-amd64.img"
}
variable "vm_hostname" {
description = "terraformed vm hostname"
default = "ubt-tf1"
}
variable "ssh_username" {
description = "the ssh user to use"
default = "ubt-admin"
}
variable "ssh_private_key" {
description = "the private key to use"
default = "~/.ssh/id_rsa"
}
variable "ip_address" {
description = "Static IP address of VM"
default = "192.168.1.211"
}