Skip to content

Commit 2f9024d

Browse files
ramnathnayakprcodycushing
authored andcommitted
bastion_key should be bastion_private_key
bastion_key should be bastion_private_key
1 parent 4f0d1f3 commit 2f9024d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/examples/DBsystems/remote-exec.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ resource "null_resource" "remote-exec" {
1010
# Bastion details
1111
bastion_host = "${var.BastionHost}"
1212
bastion_user = "${var.HostUserName}"
13-
bastion_key = "${var.ssh_private_key}"
13+
bastion_private_key = "${var.ssh_private_key}"
1414
}
1515
source = "./scripts/bootstrap"
1616
destination = "~/bootstrap.sh"
@@ -27,7 +27,7 @@ resource "null_resource" "remote-exec" {
2727
# Bastion details
2828
bastion_host = "${var.BastionHost}"
2929
bastion_user = "${var.HostUserName}"
30-
bastion_key = "${var.ssh_private_key}"
30+
bastion_private_key = "${var.ssh_private_key}"
3131
}
3232
inline = [
3333
"chmod +x ~/bootstrap.sh",

0 commit comments

Comments
 (0)