Variable
Variable
Information about variables expected by the Terraform configuration.
JSON Example
{
"defaultValue": {},
"description": "string",
"name": "string",
"sensitive": false,
"type": "string"
}
object
defaultValue
Optional
The variable's default value in the Terraform configuration.
string
description
Optional
The variable's description in the Terraform configuration.
string
name
Optional
The variable's name in the Terraform configuration.
boolean
sensitive
Optional
Whether the variable should be obscured because of security concerns.
string
type
Optional
The variable's type in the Terraform configuration. Complex Terraform types may be treated as Strings.
Possible values are :
STRING,
NUMBER,
BOOL,
LIST,
MAP,