You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This function will be used to copy the module to a StorageAccount blob container to further use it for Azure AutomationAccount or Azure Functions.
8
+
9
+
Long description
10
+
11
+
.PARAMETERSource
12
+
Full path were the module is located as .zip or folder
13
+
14
+
Parameter description
15
+
16
+
.PARAMETERKeyVaultName
17
+
Name of the KeyVault where the SasToken of the Storage Account is stored.
18
+
Highly recommend to store the SasToken of the Storage Account in a Key Vault.
19
+
20
+
Parameter description
21
+
22
+
.PARAMETERKeyVaultSecretNameSasToken
23
+
Name of the Secret where the SasToken is saved
24
+
25
+
Parameter description
26
+
27
+
.PARAMETERSasToken
28
+
Instead of using a KeyVault for storing the SasToken in a secure way the SasToken can be inserted by this parameter.
29
+
Not recommended, cause it is a string!
30
+
31
+
Parameter description
32
+
33
+
.PARAMETERStorageAccountSubscriptionId
34
+
SubscriptionId where the StorageAccount is located
35
+
36
+
Parameter description
37
+
38
+
.PARAMETERStorageAccountName
39
+
Name of the Storage Account
40
+
41
+
Parameter description
42
+
43
+
.PARAMETERStorageAccountContainer
44
+
Name of the StorageAccount Container.
45
+
Valid names start and end with a lower case letter or a number and has in between a lower case letter, number or dash with no consecutive dashes and is 3 through 63 characters long.
46
+
By default, the inserted name will be converted to lowercase.
47
+
48
+
Parameter description
49
+
50
+
.PARAMETERStorageAccountContainerCreate
51
+
If a container is not available and should be created with this function the parameter need to be $true
52
+
The default parameter is $false
53
+
54
+
Parameter description
55
+
56
+
.PARAMETERStorageAccountBlobName
57
+
Name of the StorageAccount Blob where the module will be copied.
58
+
If nothing will be entered the file/folder-name (leaf) of the source-parameter will be used
59
+
60
+
Parameter description
61
+
62
+
.PARAMETERStorageAccountBlobOverwrite
63
+
If a blob with the same name already exist it can be overwritten with setting the parameter to $true
0 commit comments