github.com/kcburge/terraform@v0.11.12-beta1/test-fixtures/credentials (about)

     1  
     2  credentials "example.com" {
     3    token = "foo the bar baz"
     4  }
     5  
     6  credentials "example.net" {
     7    # Username and password are not currently supported, but we want to tolerate
     8    # unknown keys in case future versions add new keys when both old and new
     9    # versions of Terraform are installed on a system, sharing the same
    10    # CLI config.
    11    username = "foo"
    12    password = "baz"
    13  }
    14  
    15  credentials_helper "foo" {
    16    args = ["bar", "baz"]
    17  }