github.com/hashicorp/packer@v1.14.3/hcl2template/testdata/communicator/basic.pkr.hcl (about)

     1  
     2  communicator "ssh" "vagrant" {
     3      string   = "string"
     4      int      = 42
     5      int64    = 43
     6      bool     = true
     7      trilean  = true
     8      duration = "10s"
     9      map_string_string = {
    10          a = "b"
    11          c = "d"
    12      }
    13      slice_string = [
    14          "a",
    15          "b",
    16          "c",
    17      ]
    18  
    19      nested {
    20          string   = "string"
    21          int      = 42
    22          int64    = 43
    23          bool     = true
    24          trilean  = true
    25          duration = "10s"
    26          map_string_string = {
    27              a = "b"
    28              c = "d"
    29          }
    30          slice_string = [
    31              "a",
    32              "b",
    33              "c",
    34          ]
    35      }
    36  
    37      nested_slice {
    38      }
    39  }