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
"secureValue": "if this is really a secret, don't put it here... in plain text..."
103
+
}
104
+
],
99
105
"scriptContent": "
100
106
param([string] $name)
101
107
$output = 'Hello {0}' -f $name
@@ -121,6 +127,7 @@ Property value details:
121
127
-**forceUpdateTag**: Changing this value between template deployments forces the deployment script to re-execute. Use the newGuid() or utcNow() function that needs to be set as the defaultValue of a parameter. To learn more, see [Run script more than once](#run-script-more-than-once).
122
128
-**azPowerShellVersion**/**azCliVersion**: Specify the module version to be used. For a list of supported PowerShell and CLI versions, see [Prerequisites](#prerequisites).
123
129
-**arguments**: Specify the parameter values. The values are separated by spaces.
130
+
-**environmentVariables**: Specify the environment variables to pass over to the script. For more information, see [Develop deployment scripts](#develop-deployment-scripts).
124
131
-**scriptContent**: Specify the script content. To run an external script, use `primaryScriptUri` instead. For examples, see [Use inline script](#use-inline-scripts) and [Use external script](#use-external-scripts).
125
132
-**primaryScriptUri**: Specify a publicly accessible Url to the primary deployment script with supported file extensions.
126
133
-**supportingScriptUris**: Specify an array of publicly accessible Urls to supporting files that are called in either `ScriptContent` or `PrimaryScriptUri`.
@@ -229,7 +236,7 @@ You can control how PowerShell responds to non-terminating errors by using the [
229
236
230
237
### Pass secured strings to deployment script
231
238
232
-
Setting environment variables in your container instances allows you to provide dynamic configuration of the application or script run by the container. Deployment script handles non-secured and secured environment variables in the same way as Azure Container Instance. For more information, see [Set environment variables in container instances](../../container-instances/container-instances-environment-variables.md#secure-values).
239
+
Setting environment variables (EnvironmentVariable) in your container instances allows you to provide dynamic configuration of the application or script run by the container. Deployment script handles non-secured and secured environment variables in the same way as Azure Container Instance. For more information, see [Set environment variables in container instances](../../container-instances/container-instances-environment-variables.md#secure-values).
0 commit comments