대부분의 프로 비져는 SSH 또는 WinRM을 통해 원격 리소스에 액세스해야하며 연결 방법에 대한 세부 정보가 포함 된 중첩 된 연결 블록이 필요합니다.
# Copies the file as the root user using SSH
provisioner "file" {
source = "conf/myapp.conf"
destination = "/etc/myapp.conf"
connection {
type = "ssh"
user = "root"
password = "${var.root_password}"
host = "${var.host}"
}
}