github.com/iaas-resource-provision/iaas-rpc@v1.0.7-0.20211021023331-ed21f798c408/internal/terraform/testdata/vars-basic-bool/main.tf (about)

     1  // At the time of writing Terraform doesn't formally support a boolean
     2  // type, but historically this has magically worked. Lots of TF code
     3  // relies on this so we test it now.
     4  variable "a" {
     5      default = true
     6  }
     7  
     8  variable "b" {
     9      default = false
    10  }