Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

Environment

import type { Environment } from "https://googleapis.deno.dev/v1/batch:v1.ts";

An Environment describes a collection of environment variables to set when executing Tasks.

interface Environment {
encryptedVariables?: KMSEnvMap;
secretVariables?: {
[key: string]: string;
}
;
variables?: {
[key: string]: string;
}
;
}

§Properties

§
encryptedVariables?: KMSEnvMap
[src]

An encrypted JSON dictionary where the key/value pairs correspond to environment variable names and their values.

§
secretVariables?: {
[key: string]: string;
}
[src]

A map of environment variable names to Secret Manager secret names. The VM will access the named secrets to set the value of each environment variable.

§
variables?: {
[key: string]: string;
}
[src]

A map of environment variable names to values.