From ab8a7d3c08cdd8a6a7e160608ce7c75df947ba02 Mon Sep 17 00:00:00 2001 From: Chris King <kingtc@uab.edu> Date: Mon, 18 Apr 2022 14:46:15 +0000 Subject: [PATCH] Add pkrvars example file --- openstack.pkrvars.hcl.example | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 openstack.pkrvars.hcl.example diff --git a/openstack.pkrvars.hcl.example b/openstack.pkrvars.hcl.example new file mode 100644 index 0000000..7771e06 --- /dev/null +++ b/openstack.pkrvars.hcl.example @@ -0,0 +1,14 @@ +# Favor to use +flavor = "m1.small" +# Source image to build off of - current support with ansible assumes Centos 7 +source_image = "some-CentOS-7-image" +# Floating IP network - one will be assigned in order to provision the image +floating_ip_network = "floating-network-name" +# A uuid list of network(s) that the instance should be created in +networks = ["aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee"] +# Security group sto add to the instance - you should add at least one that provides ssh access to the machine +security_groups = ["allow ssh"] +# set to 'true' to append a YYYYMMDDHHmm suffix to the image created +image_date_suffix = false +# Set to a public key that will be added as a root ssh key +root_ssh_key = "ecdsa-sha2-nistp256 AAAAyourkeyhere comment string here" -- GitLab