Last active
March 18, 2018 22:43
-
-
Save santiagopoli/1e4f0a5d03934e447add3be1abb004dc to your computer and use it in GitHub Desktop.
Terraform Blue Green / KeyPair
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
resource "aws_key_pair" "terraform-blue-green" { | |
key_name = "terraform-blue-green-v${var.infrastructure_version}" | |
public_key = "${file("keypairs/keypair.pub")}" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment