Module config
This page documents the language specification for the linode package. If you're looking for help working with the inputs, outputs, or functions of linode resources in a Pulumi program, please see the resource documentation for examples and API reference.
This provider is a derived work of the Terraform Provider distributed under MPL 2.0. If you encounter a bug or missing feature, first check the
pulumi/pulumi-linoderepo; however, if that doesn’t turn up anything, please consult the sourceterraform-providers/terraform-provider-linoderepo.
APIs
APIs
let apiVersion
let apiVersion: string | undefined = __config.get("apiVersion") || utilities.getEnv("LINODE_API_VERSION");An HTTP User-Agent Prefix to prepend in API requests.
let token
let token: string | undefined = __config.get("token") || utilities.getEnv("LINODE_TOKEN", "LINODE_API_TOKEN");The token that allows you access to your Linode account
let uaPrefix
let uaPrefix: string | undefined = __config.get("uaPrefix") || utilities.getEnv("LINODE_UA_PREFIX");An HTTP User-Agent Prefix to prepend in API requests.
let url
let url: string | undefined = __config.get("url") || utilities.getEnv("LINODE_URL");The HTTP(S) API address of the Linode API to use.