Bool

bool

Can either be true or false. A bool value can be used in conditional logic.

Example

digitalocean_droplet

...
backups = true
...

The source

   "backups": {
        Type:     schema.TypeBool,
        Optional: true,
        Default:  false,
   },

References