mirror of
https://github.com/farcasclaudiu/terraform-course.git
synced 2026-06-22 13:02:04 +03:00
8 lines
173 B
Terraform
8 lines
173 B
Terraform
resource "aws_key_pair" "mykeypair" {
|
|
key_name = "mykeypair"
|
|
public_key = "${file("${var.PATH_TO_PUBLIC_KEY}")}"
|
|
lifecycle {
|
|
ignore_changes = ["public_key"]
|
|
}
|
|
}
|