Skip to content

Commit

Permalink
Merge pull request #4 from ExitoLab/fix/use-terraform14-syntax
Browse files Browse the repository at this point in the history
fix: use terraform 14 syntax
  • Loading branch information
ExitoLab authored May 1, 2021
2 parents 835137e + b7c553e commit a598484
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ec2-instance/main.tf
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#create key pair on aws
resource "aws_key_pair" "ssh_key" {
key_name = "ssh_key"
public_key = "${var.public_key}"
public_key = var.public_key
tags = local.tags
}

Expand Down

0 comments on commit a598484

Please sign in to comment.