4
0
Fork 0

alignment

This commit is contained in:
uk-bolly 2022-07-27 16:50:17 +01:00 committed by GitHub
parent bffb3d2dc6
commit 9d91c2cba2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -71,7 +71,7 @@ resource "aws_instance" "testing_vm" {
# The default username for our AMI
user = var.ami_username
# Private key for connection
private_key = file("${path.module}/.ssh/github_actions.pem")
private_key = data.local_file.github_actions.content
# Type of connection
type = "ssh"
}