forked from hassenius/terraform-icp-openstack
-
Notifications
You must be signed in to change notification settings - Fork 3
/
example-terraform.tfvars
54 lines (42 loc) · 1.63 KB
/
example-terraform.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
############################################################
############################################################
###
### Example terraform.tfvars file
##
## To use this template, copy this file to terraform.tfvars
## and update with your own values
##
############################################################
############################################################
##############################
## OpenStack configuration
##############################
# The endpoint URL used to connect to OpenStack
openstack_auth_url = ""
# The openstack username to authenticate as
openstack_user_name = ""
# The password for the user specified above
openstack_password = ""
# The openstack project aka tenant to authenticate and deploy to
openstack_project_name = ""
# Uncomment this line if your domain is different from "Default"
# openstack_domain_name = ""
############################
## Network configuration
############################
# The pool to allocate floating ip addresses for admin and proxy access
floating_pool = ""
# The name of the network. It is assumed this exists and is a self-service network
network_name = ""
############################
## VM Configuration
############################
# The name of the image to provision VMs from. Tested on Ubuntu 16.04, but RHEL and others should also work.
image_name = ""
# The template generates it's own user and ssh key for deployment.
# If you want to be able to SSH to the instance, provide an existing key pair name here
keypair_name = ""
# Update each node type to correspond with your own available flavor_name
master = {
flavor_name = "m1.large"
}