File tree 2 files changed +2
-8
lines changed
2 files changed +2
-8
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ Terraform module for KVM/Libvirt Virtual Machine. This module will create a KVM
9
9
10
10
- creates one or more VMs
11
11
- one NIC per domain, connected to the network using the ** bridge interface**
12
- - setup network interface using DHCP or static
12
+ - setup network interface using DHCP or static configuration
13
13
- cloud_init VM(s) configuration (Ubuntu+Netplan complient)
14
14
- test the ssh connection
15
15
@@ -21,7 +21,6 @@ Terraform module for KVM/Libvirt Virtual Machine. This module will create a KVM
21
21
22
22
| Parameter | Description | Default value
23
23
|-----------------|-----|-----
24
- |libvirt_disk_path| Path to libvirt Disk pool|/mnt/terra
25
24
|os_img_url|URL to the OS image|https://cloud-images.ubuntu.com/focal/current/focal-server-cloudimg-amd64.img
26
25
|vm_count|Number of VMs| 1
27
26
|vm_hostname_prefix|VM hostname prefix|vm
@@ -159,7 +158,7 @@ output_data = {
159
158
"ip_address" = [
160
159
"192.168.165.151",
161
160
"192.168.165.152",
162
- "192.168.165.152 ",
161
+ "192.168.165.153 ",
163
162
]
164
163
"name" = [
165
164
"server01",
Original file line number Diff line number Diff line change 1
- variable "libvirt_disk_path" {
2
- description = " Path to libvirt Disk pool"
3
- default = " /mnt/terra"
4
- }
5
-
6
1
variable "os_img_url" {
7
2
description = " URL to the OS image"
8
3
default = " https://cloud-images.ubuntu.com/focal/current/focal-server-cloudimg-amd64.img"
You can’t perform that action at this time.
0 commit comments