Skip to content

Commit

Permalink
fix key pair
Browse files Browse the repository at this point in the history
  • Loading branch information
morsecodist committed Nov 30, 2021
1 parent e7d8185 commit 04de044
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ terraform {
resource "aws_key_pair" "swipe_batch" {
key_name = var.app_name
public_key = var.batch_ssh_public_key
count = var.batch_ssh_public_key == "" ? 1 : 0
count = var.batch_ssh_public_key != "" ? 1 : 0
}

module "batch_subnet" {
Expand Down
2 changes: 1 addition & 1 deletion version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v0.2.1-beta
v0.2.2-beta

0 comments on commit 04de044

Please sign in to comment.