-
Notifications
You must be signed in to change notification settings - Fork 0
/
Environments.ps1
31 lines (24 loc) · 1.21 KB
/
Environments.ps1
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
####################################################
###### Helper Functions ######
####################################################
function createUrl ([String] $PARAMETER_PROTOCOL, [String] $PARAMETER_HOSTNAME, [String] $PARAMETER_PORT, [String] $PARAMETER_PATH) {
return $PARAMETER_PROTOCOL + "://" + $PARAMETER_HOSTNAME + ":" + $PARAMETER_PORT + "/" + $PARAMETER_PATH
}
##############################################################
###### Customer - Example Environment - Web Services ######
##############################################################
$URL_PROTOCOL = "https"
$URL_HOSTNAME = "appurl.com"
$URL_PORT = "443"
$URL_PATH = "webservices-endpoint"
$DEV1_WEBSERVICES = createUrl $URL_PROTOCOL $URL_HOSTNAME $URL_PORT $URL_PATH
$DEV1_WEBSERVICES
###################################################################
###### Customer - Example Environment - Frontend Application ######
###################################################################
$URL_PROTOCOL = "https"
$URL_HOSTNAME = "appurl.com"
$URL_PORT = "443"
$URL_PATH = "frontend-application"
$DEV1_FRONTEND = createUrl $URL_PROTOCOL $URL_HOSTNAME $URL_PORT $URL_PATH
$DEV1_FRONTEND