Skip to content

Commit

Permalink
Merge pull request #22 from rhythmictech/ENG-3526
Browse files Browse the repository at this point in the history
change coalese to try for repo_port
  • Loading branch information
dgoodellrhy authored Feb 9, 2023
2 parents 3c3e2b9 + 03e3d90 commit 3e3fccd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ locals {
playbook_file = var.playbook_file
playbook_repo = var.playbook_repo
repo_host = try(local.repo_parts.host, null)
repo_port = coalesce(local.repo_parts.port, 22)
repo_port = try(local.repo_parts.port, 22)
ssh_key_name = try(data.aws_secretsmanager_secret.ssh_key[0].name, null)
})

Expand Down

0 comments on commit 3e3fccd

Please sign in to comment.