trello

The trello credential can be used to access Trello resources.

credential "trello" "my_trello" {
api_key = "a25ad2e..."
token = "ATTAb179ea..."
}

Arguments

NameTypeRequired?Description
api_keyStringOptionalAPI key
tokenStringOptionalAPI token

All arguments are optional, and a trello credential with no arguments will behave the same as the default credential.

Default Credential

The trello credential type includes an implicit, default credential (credential.trello.default) that will be configured to set the api_key to the TRELLO_API_KEY environment variable and the token to the TRELLO_TOKEN environment variable.

credential "trello" "default" {
api_key = env("TRELLO_API_KEY")
token = env("TRELLO_TOKEN")
}