9 lines
130 B
HCL
9 lines
130 B
HCL
resource "aws_instance" "foo" {
|
|
provisioner "shell" {
|
|
test_string = "test"
|
|
connection {
|
|
user = "test"
|
|
}
|
|
}
|
|
}
|