Skip to content
Snippets Groups Projects
terraform.tfvars.example 1.16 KiB
Newer Older
##
# Variables related to openstack authentication
##

# username and user domain
user_name        = "openstack_user_name"
user_domain_name = "openstack_domain_name"
# application credential data
appcred_id       = "application_credential_id"
appcred_name     = "application_credential_name"
appcred_secret   = "application_credential_secret"
# ssh keypair name
ssh_keypair      = "ssh_keypair_name"

##
# Instance customization
##

# base image name; right now only suse is supported
#base_image_name = "sles-15-sp2-x86_64"
# image visibility; must be one of "public", "private", "community", or "shared"
#base_image_visibility = "community"
# the number of OSD instance(s) to deploy
#osd_node_count = 1
# an array of IPs to use for dns in the instance
public_network_dns = ["8.8.8.8", "1.1.1.1"]
# An array of disks to add to the OSD instances, in GB; the default creates 2 8GB disks
#osd_disk_sizes = [8, 8]
# Additional "application" instances to provision
#app_instance_count = 0


##
# SUSE registration data
##

# suse registration details
sles_rmt_host    = "https://rmt.host.here.with.trailing.slash/"
Chris King's avatar
Chris King committed
sles_rmt_fingerprint   = "AA:BB:CC:DD:EE:FF:GG:HH:II:JJ:KK:LL:MM:NN:OO:PP"