Module config

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-signalfx repo; however, if that doesn’t turn up anything, please consult the source terraform-providers/terraform-provider-signalfx repo.

APIs

APIs

let apiUrl

let apiUrl: string | undefined =  __config.get("apiUrl");

API URL for your SignalFx org, may include a realm

let authToken

let authToken: string | undefined =  __config.get("authToken") || utilities.getEnv("SFX_AUTH_TOKEN");

SignalFx auth token

let customAppUrl

let customAppUrl: string | undefined =  __config.get("customAppUrl");

Application URL for your SignalFx org, often customzied for organizations using SSO

let timeoutSeconds

let timeoutSeconds: number | undefined =  __config.getObject<number>("timeoutSeconds");

Timeout duration for a single HTTP call in seconds. Defaults to 120