Module config
This page documents the language specification for the digitalocean package. If you're looking for help working with the inputs, outputs, or functions of digitalocean 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-digitaloceanrepo; however, if that doesn’t turn up anything, please consult the sourceterraform-providers/terraform-provider-digitaloceanrepo.
APIs
APIs
let apiEndpoint
let apiEndpoint: string | undefined = __config.get("apiEndpoint") || (utilities.getEnv("DIGITALOCEAN_API_URL") || "https://api.digitalocean.com");The URL to use for the DigitalOcean API.
let spacesAccessId
let spacesAccessId: string | undefined = __config.get("spacesAccessId") || utilities.getEnv("SPACES_ACCESS_KEY_ID");The access key ID for Spaces API operations.
let spacesEndpoint
let spacesEndpoint: string | undefined = __config.get("spacesEndpoint") || utilities.getEnv("SPACES_ENDPOINT_URL");The URL to use for the DigitalOcean Spaces API.
let spacesSecretKey
let spacesSecretKey: string | undefined = __config.get("spacesSecretKey") || utilities.getEnv("SPACES_SECRET_ACCESS_KEY");The secret access key for Spaces API operations.
let token
let token: string | undefined = __config.get("token") || utilities.getEnv("DIGITALOCEAN_TOKEN");The token key for API operations.