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

APIs

APIs

let cacertFile

let cacertFile: string | undefined =  __config.get("cacertFile") || utilities.getEnv("RABBITMQ_CACERT");

let endpoint

let endpoint: string | undefined =  __config.get("endpoint") || utilities.getEnv("RABBITMQ_ENDPOINT");

let insecure

let insecure: boolean | undefined =  __config.getObject<boolean>("insecure") || utilities.getEnvBoolean("RABBITMQ_INSECURE");

let password

let password: string | undefined =  __config.get("password") || utilities.getEnv("RABBITMQ_PASSWORD");

let username

let username: string | undefined =  __config.get("username") || utilities.getEnv("RABBITMQ_USERNAME");