Skip to content

Instantly share code, notes, and snippets.

@santiagopoli
Last active March 18, 2018 22:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save santiagopoli/1e4f0a5d03934e447add3be1abb004dc to your computer and use it in GitHub Desktop.
Save santiagopoli/1e4f0a5d03934e447add3be1abb004dc to your computer and use it in GitHub Desktop.
Terraform Blue Green / KeyPair
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