Files

40 lines
642 B
HCL
Raw Permalink Normal View History

2019-10-14 17:02:53 +02:00
communicator "ssh" "vagrant" {
2019-12-17 11:25:56 +01:00
string = "string"
int = 42
int64 = 43
bool = true
trilean = true
duration = "10s"
map_string_string = {
2019-12-17 11:25:56 +01:00
a = "b"
c = "d"
}
slice_string = [
"a",
"b",
"c",
]
nested {
string = "string"
int = 42
int64 = 43
bool = true
trilean = true
duration = "10s"
map_string_string = {
2019-12-17 11:25:56 +01:00
a = "b"
c = "d"
}
slice_string = [
"a",
"b",
"c",
]
}
nested_slice {
}
2019-10-14 17:02:53 +02:00
}