Skip to content

Instantly share code, notes, and snippets.

@DamolAAkinleye
Last active October 15, 2019 15:50
Show Gist options
  • Save DamolAAkinleye/8e11e54b3569559d32ede7c29bea0b60 to your computer and use it in GitHub Desktop.
Save DamolAAkinleye/8e11e54b3569559d32ede7c29bea0b60 to your computer and use it in GitHub Desktop.
Created with Copy to Gist
param(
2
[Parameter(Mandatory=$True)]
3
[string]
4
$rootFolderPath,
5
6
[Parameter(Mandatory=$True)]
7
[string]
8
$resourceGroupName,
9
10
[Parameter(Mandatory=$True)]
11
[string]
12
$productName,
13
14
[Parameter(Mandatory=$True)]
15
[string]
16
$sparkClusterName,
17
18
[Parameter(Mandatory=$True)]
19
[string]
20
$randomizeProductName,
21
22
[Parameter(Mandatory=$True)]
23
[string]
24
$serviceFabricClusterName,
25
26
[Parameter(Mandatory=$True)]
27
[string]
28
$serviceAppName,
29
30
[Parameter(Mandatory=$True)]
31
[string]
32
$clientAppName,
33
34
[Parameter(Mandatory=$True)]
35
[string]
36
$sparkPassword,
37
38
[Parameter(Mandatory=$True)]
39
[string]
40
$sparkSshPassword,
41
42
[Parameter(Mandatory=$True)]
43
[string]
44
$sfPassword,
45
46
[Parameter(Mandatory=$True)]
47
[string]
48
$certPassword,
49
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment