-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathterraform.tfvars.example
44 lines (35 loc) · 1.13 KB
/
terraform.tfvars.example
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
# URL of the image to use
# EXAMPLE:
# image_uri = "SLE-15-SP1-JeOS-GMC"
image_uri = "/home/tux/Downloads/SLES15-SP1-JeOS.x86_64-15.1-OpenStack-Cloud-QU1.qcow2"
# Identifier to make all your resources unique and avoid clashes with other users of this terraform project
stack_name = "mystack"
# CIDR of the network
network_cidr = "192.168.100.0/24"
# Name of DNS domain
dns_domain = "caasp.local"
# Username for the cluster nodes
# EXAMPLE:
username = "sles"
# Password for the cluster nodes
# EXAMPLE:
password = "linux"
# define the repositories to use
# EXAMPLE:
# repositories = {
# repository1 = "http://example.my.repo.com/repository1/"
# repository2 = "http://example.my.repo.com/repository2/"
# }
# Minimum required packages. Do not remove them.
# Feel free to add more packages
packages = [
"kernel-default",
"-kernel-default-base"
]
# ssh keys to inject into all the nodes
# EXAMPLE:
# authorized_keys = [
# "ssh-rsa <key-content>"
# ]
# IMPORTANT: Replace these ntp servers with ones from your infrastructure
ntp_servers = ["0.novell.pool.ntp.org", "1.novell.pool.ntp.org", "2.novell.pool.ntp.org", "3.novell.pool.ntp.org"]