Skip to content

Instantly share code, notes, and snippets.

@duduribeiro
Created March 31, 2017 21:42
Terraform staging - _main.tf
provider "aws" {
region = "${var.region}"
}
resource "aws_key_pair" "key" {
key_name = "${var.key_name}"
public_key = "${file("staging_key.pub")}"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment