Skip to content

Commit 9b2bad2

Browse files
author
tes
committed
fix: TF 12 variable to remove warning
1 parent 7cf8342 commit 9b2bad2

File tree

1 file changed

+2
-2
lines changed
  • redbaron/modules/letsencrypt/aws/create-cert-webserver-aws

1 file changed

+2
-2
lines changed

redbaron/modules/letsencrypt/aws/create-cert-webserver-aws/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ resource "null_resource" "lets-encrypt" {
1111
]
1212

1313
connection {
14-
host = "${var.phishing_server_ip}"
14+
host = var.phishing_server_ip
1515
type = "ssh"
1616
user = "admin"
17-
private_key = "${file("ssh_keys/${var.phishing_server_ip}")}"
17+
private_key = file("ssh_keys/${var.phishing_server_ip}")
1818
}
1919
}
2020
}

0 commit comments

Comments
 (0)