Environment Variable

Describes an environment variable for the container.

Properties

Name Type Required
type string (enum) No
name string No
value string No

type

Type: string (enum)
Required: No
Default: ClearText

The type of the environment variable being given in value

Possible values are:

  • ClearText - The environment variable in clear text, will not be processed in any way and passed in as is
  • KeyVaultReference - The URI to a KeyVault secret version, will be resolved using the application's managed identity (this type is only valid if the app was assigned a managed identity) before getting passed in
  • SecretValueReference - The reference to a SecretValue resource, will be resolved before getting passed in

name

Type: string
Required: No

The name of the environment variable.


value

Type: string
Required: No

The value of the environment variable, will be processed based on the type provided.