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