Skip to content

Commit

Permalink
Merge pull request #13 from utilitywarehouse/tf-fmt
Browse files Browse the repository at this point in the history
Format for latest terraform
  • Loading branch information
george-angel authored Feb 9, 2021
2 parents 44c0e68 + 3fbfc83 commit fa0f173
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions terraform/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ data "ignition_systemd_unit" "ssh_key_agent" {
content = templatefile("${path.module}/resources/ssh-key-agent.service",
{
uri = var.uri
groups = "${join(",", var.groups)}"
groups = join(",", var.groups)
version = var.agent_version
}
)
Expand All @@ -37,7 +37,7 @@ data "ignition_systemd_unit" "ssh_key_agent_docker" {

{
uri = var.uri
groups = "${join(",", var.groups)}"
groups = join(",", var.groups)
version = var.agent_version
}
)
Expand Down

0 comments on commit fa0f173

Please sign in to comment.