2018-03-10 19:08:31 +01:00
|
|
|
|
2018-12-01 01:56:54 +01:00
|
|
|
resource "test_instance" "example" {
|
2019-04-16 22:28:12 +02:00
|
|
|
tags = {
|
|
|
|
# Thingy thing
|
|
|
|
name = "foo bar baz" # this is a terrible name
|
|
|
|
}
|
|
|
|
|
2018-12-05 02:29:42 +01:00
|
|
|
connection {
|
|
|
|
host = "127.0.0.1"
|
|
|
|
}
|
2019-02-22 02:51:37 +01:00
|
|
|
provisioner "test" {
|
2018-12-05 02:29:42 +01:00
|
|
|
connection {
|
|
|
|
host = "127.0.0.2"
|
|
|
|
}
|
|
|
|
}
|
2018-03-10 19:08:31 +01:00
|
|
|
}
|