-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tf
75 lines (61 loc) · 1.65 KB
/
main.tf
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
provider "libvirt" {
uri = "qemu+ssh://[email protected]/system?socket=/var/run/libvirt/libvirt-sock"
}
resource "libvirt_pool" "terraform" {
name = "terraform"
type = "dir"
path = var.libvirt_disk_path
}
resource "libvirt_volume" "ubuntu2010tf1-qcow2" {
name = "ubuntu2010tf1-qcow2"
pool = libvirt_pool.terraform.name
source = var.ubuntu_20_10_img_url
format = "qcow2"
#size = 15 * 1024 * 1024 * 1024
}
data "template_file" "user_data" {
template = file("${path.module}/config/cloud_init.yml")
}
data "template_file" "network_config" {
template = file("${path.module}/config/network_config.yml")
}
data "template_file" "meta_data" {
template = file("${path.module}/config/meta_data.yml")
}
resource "libvirt_cloudinit_disk" "commoninit" {
name = "commoninit.iso"
user_data = data.template_file.user_data.rendered
network_config = data.template_file.network_config.rendered
meta_data = data.template_file.meta_data.rendered
pool = libvirt_pool.terraform.name
}
resource "libvirt_domain" "domain-ubuntu2010tf1" {
name = var.vm_hostname
memory = "512"
vcpu = 1
cloudinit = libvirt_cloudinit_disk.commoninit.id
network_interface {
network_name = "host-bridge"
bridge = "br0"
wait_for_lease = false
hostname = var.vm_hostname
}
console {
type = "pty"
target_port = "0"
target_type = "serial"
}
console {
type = "pty"
target_type = "virtio"
target_port = "1"
}
disk {
volume_id = libvirt_volume.ubuntu2010tf1-qcow2.id
}
graphics {
type = "spice"
listen_type = "address"
autoport = true
}
}