github.com/rstandt/terraform@v0.12.32-0.20230710220336-b1063613405c/configs/configupgrade/testdata/valid/noop/input/resources.tf (about)

     1  
     2  resource "test_instance" "example" {
     3    tags = {
     4      # Thingy thing
     5      name = "foo bar baz" # this is a terrible name
     6    }
     7  
     8    connection {
     9      host = "127.0.0.1"
    10    }
    11    provisioner "test" {
    12      connection {
    13        host = "127.0.0.2"
    14      }
    15    }
    16  }