-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathtf-scvmm-devrc.mk.example
25 lines (24 loc) · 1.31 KB
/
tf-scvmm-devrc.mk.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
# This file is designed to assist you with configuring your environment for
# testing the Active Directory provider, and also serves as a catalog of the environment
# variables that are required to test all of the resources in this provider.
#
# This should be copied to ~/.tf-ad-devrc.mk and edited accordingly.
#
# Note that the use of all of this file is not required - environment variables
# can still be completely set from the command line or your existing
# environment. In this case, don't use this file as it may cause conflicts.
#
# NOTE: Remove the annotations from any variables that have them inline, or
# else make will add the whitespace to the variable as well.
#
# The essentials. None of the tests will run if you don't have these.
export SCVMM_SERVER_IP ?= server.ip
export SCVMM_SERVER_PORT ?= server.port
export SCVMM_SERVER_USER ?= server.user
export SCVMM_SERVER_PASSWORD ?= server.password
# The following variables are shared across various tests. To ensure all tests
# succeed, it's probably best to set all of these to valid values.
export SCVMM_VMM_SERVER ?= scvmm-vmm-server # vmm server to be selected
export SCVMM_TEMPLATE_NAME ?= scvmm-template-name # template to be used to create virtual machine
export SCVMM_CLOUD_NAME ?= scvmm-cloud-name # cloud to be used
# vi: filetype=make