docker-demo-2

This commit is contained in:
Edward Viaene
2016-10-26 09:44:13 +00:00
parent d32475746d
commit 8b0dc55125
7 changed files with 298 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
resource "aws_key_pair" "mykeypair" {
key_name = "mykeypair"
public_key = "${file("${var.PATH_TO_PUBLIC_KEY}")}"
lifecycle {
ignore_changes = ["public_key"]
}
}