-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample.tfvars
61 lines (48 loc) · 1.3 KB
/
example.tfvars
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
# Proxmox VE
########################################################################
# Proxmox VE API details and VM hosting configuration
# API token guide: https://registry.terraform.io/providers/bpg/proxmox/2.9.14/docs
virtual_environment_endpoint = "https://192.168.0.10:8006"
virtual_environment_username = "root@pam"
virtual_environment_password = "password"
virtual_environment_tls_insecure = true
virtual_environment_ssh = {
node = [{
name = "pve"
address = "192.168.0.10"
}]
agent = true
username = "root"
password = "password"
}
# VM specifications
########################################################################
pve_node_name = "pve"
vm_name = "vyos-builder"
vm_id = 200
vm_tags = [ "terraform-managed", "vyos" ]
on_boot = false
cpu = 4
cpu_type = "host"
memory = 8096
# Network configuration
bridge_name = "vmbr0"
dhcp = true
ip = ""
cidr = ""
gateway = ""
dns_servers = [ "1.1.1.1" ]
# Disk configuration
os_datastore_lvm_name = "local-lvm"
disk_size = 100
# cloud-init configuration
cloud_config_datastore_name = "local"
vm_user = "ubuntu"
vm_user_password = "password"
fqdn = "vyos-builder.local"
timezone = "Asia/Tokyo"
locale = "ja_JP.UTF-8"
apt_mirror = "https://ftp.udx.icscoe.jp/Linux/ubuntu"
ssh_pwauth = true
# jenkins
jenkins_admin_password = "password"